:root {
    --primary: #2a4b8d;
    --secondary: #f8a01c;
    --accent: #00a896;
    --light: #f8f9fa;
    --dark: #212529;
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    overflow-x: hidden;
}
a {
    text-decoration:none !important;
}
/* Header Styles */
.navbar {
    background-color: white;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    padding: 5px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
        top: 0px;
    z-index: 11;
}

.navbar-brand img {
    width: 200px;
}
.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--dark);
    margin: 0 8px;
    transition: color 0.3s;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--primary);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--gradient);
    bottom: 0;
    left: 0;
    transition: width 0.3s;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

.btn-primary {
    background: var(--gradient);
    transition: all 0.3s;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(42, 75, 141, 0.3);
}

.btn-outline-primary {
    color: var(--primary);
    transition: all 0.3s;
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

/* Main Content Area */
.main-content {
    min-height: 60vh;
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.main-content h1 {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.main-content p {
    font-size: 1.2rem;
    color: var(--dark);
    max-width: 600px;
    margin: 0 auto;
}

/* Footer Styles */
.footer {
    background: #1a1a2e;
    color: white;
    padding: 70px 0 20px;
}

.footer h5 {
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
}

.footer h5::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background: #069c95;
    bottom: -10px;
    left: 0;
}

.footer-links {
    list-style: none;
    padding: 0;
}

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

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s;
}

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

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

.social-icons a:hover {
    background: #069c95;
    transform: translateY(-3px);
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.contact-info i {
    margin-right: 10px;
    color: #069c95;
    margin-top: 5px;
}

.copyright {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    margin-top: 50px;
    text-align: center;
    color: #b0b0b0;
    font-size: 0.9rem;
}
.copyright p {
    margin:0;
}
/* Responsive */
@media (max-width: 991px) {
    .navbar-nav {
        padding: 15px 0;
    }
    
    .navbar-nav .nav-link {
        margin: 5px 0;
    }
    
    .navbar-buttons {
        margin-top: 10px;
    }
}
/* Hero Section - Using Existing Variables */
.hero-section {
    background: var(--gradient);
    color: white;
        padding: 50px 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMTIwMCA4MDAiIHByZXNlcnZlQXNwZWN0UmF0aW89Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGcgZmlsbD0icmdiYSgyNTUsIDI1NSwgMjU1LCAwLjA3KSI+PGNpcmNsZSBjeD0iMTAwIiBjeT0iMTAwIiByPSIxMDAiLz48Y2lyY2xlIGN4PSIxMTAwIiBjeT0iMzAwIiByPSIxNTAiLz48Y2lyY2xlIGN4PSI2MDAiIGN5PSI3MDAiIHI9IjIwMCIvPjxjaXJjbGUgY3g9IjkwMCIgY3k9IjUwMCIgcj0iMTAwIi8+PGNpcmNsZSBjeD0iMzAwIiBjeT0iNDAwIiByPSIxNTAiLz48L2c+PC9zdmc+');
    opacity: 0.1;
    z-index: -1;
}
.survey-preview {
        position: relative;
        text-align:center;
}
/* Hero Content */
.hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 30px 0 20px;
}

.highlight-text {
    color: #069c95;
}

.gradient-text {
    background: linear-gradient(45deg, #069c95, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 90%;
}

/* Buttons - Using Existing Classes */
.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

/* Stats */
.hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Floating Elements */
.floating-element {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
}

.element-1 {
    top: 50px;
    right: 100px;
    animation: float 6s ease-in-out infinite;
}

.element-2 {
    bottom: 80px;
    right: 50px;
    animation: float 5s ease-in-out infinite 1s;
}

.element-3 {
        bottom: 60px;
    left: 50px;
    animation: float 7s ease-in-out infinite 0.5s;
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

.floating {
    animation: float 5s ease-in-out infinite;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .survey-preview {
        height: 300px;
        margin-top: 50px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .floating-element {
        display: none;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}
/* How It Works Section */
.how-it-works-section {
    position: relative;
}

.section-title {
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    color: var(--primary);
}

.section-title::after {
    content: '';
    position: absolute;
    width: 60%;
    height: 4px;
    background: var(--gradient);
    bottom: -10px;
    left: 20%;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--dark);
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

/* Step Cards */
.step-card {
    background: white;
    border-radius: 15px;
    padding: 30px 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    border: 1px solid rgba(0,0,0,0.05);
}
.step-card .img_addtion {
    
}
.step-card .img_addtion img {
    width: 90px;
    height: 90px;
    border: 1px dashed #c4b9b9;
    border-radius: 90px;
}
.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.step-number {
    position: absolute;
    top: -20px;
    right: 25px;
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(42, 75, 141, 0.3);
}

.step-content {
    margin-top: 15px;
}

.step-content h4 {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.step-content p {
    color: var(--dark);
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 20px;
}

.step-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.feature-badge {
    background: rgba(42, 75, 141, 0.1);
    color: var(--primary);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* CTA Card */
.cta-card {
    background: var(--gradient);
    border-radius: 15px;
    padding: 30px 25px;
    color: white;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(42, 75, 141, 0.3);
}

.cta-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.cta-card h4 {
    font-weight: 600;
    margin-bottom: 15px;
}

.cta-card p {
    opacity: 0.9;
    margin-bottom: 25px;
    flex-grow: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .step-card {
        padding: 25px 20px;
    }
    
    .step-content h4 {
        font-size: 1.2rem;
    }
    
    .cta-stats {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .step-features {
        justify-content: center;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
}
.cashout_method span {
        color: white;
    font-weight: 500;
}
.cashout_method {
        box-shadow: 0 12px 30px rgba(10, 20, 40, 0.06);
    border: 1px solid rgb(200 203 209 / 29%);
    border-radius: 18px;
    padding: 20px;
    text-align:center;
    margin-bottom: 30px;
}
.cashout_method img {
    width: 60px;
    height: 60px;
    display: block;
        margin: auto;
    margin-bottom: 18px;
    object-fit: scale-down;
}
.bg_gradiunt_1 {
    background: linear-gradient(122deg, rgb(19, 78, 94) 0%, rgb(113, 178, 128) 100%);
}
.bg_gradiunt_2 {
    background: rgb(11, 13, 38);
}
.bg_gradiunt_3 {
    background: linear-gradient(351deg, rgb(203, 206, 217) 0%, rgb(37, 188, 255) 100%);
}
.bg_gradiunt_4 {
        background: linear-gradient(316deg, rgb(140, 135, 189) 0%, rgb(255, 255, 255) 100%);
}
.bg_gradiunt_5 {
    background: linear-gradient(337deg, rgb(34, 35, 57) 2.34%, rgb(0, 194, 255) 325.28%);
}
.bg_gradiunt_6 {
    background: linear-gradient(130deg, rgb(255, 91, 83) 0%, rgb(152, 80, 250) 54.58%, rgb(44, 201, 248) 100%);
}
.bg_gradiunt_7 {
    background: linear-gradient(rgb(249, 170, 75) 0%, rgb(247, 147, 26) 99.99%);
}
.bg_gradiunt_8 {
    background: linear-gradient(rgb(121, 126, 191) 0%, rgb(96, 111, 189) 99.99%);
}
.bg_gradiunt_9 {
    background: linear-gradient(rgba(161, 164, 201, 0.7) 0%, rgba(126, 128, 154, 0.7) 100%);
}
.bg_gradiunt_10 {
    background: linear-gradient(rgb(255, 213, 141) 0%, rgb(222, 163, 61) 100%);
}
.bg_gradiunt_11 {
    background: linear-gradient(135deg, rgb(0, 212, 170) 0%, rgb(0, 163, 255) 100%);
}
.bg_gradiunt_12 {
    background: linear-gradient(135deg, rgb(193, 17, 31) 0%, rgb(193, 17, 31) 100%);
}
.bg_gradiunt_13 {
        background: linear-gradient(135deg, rgb(247, 250, 255) 0%, rgb(3, 35, 56) 100%);
}
.bg_gradiunt_14 {
    background: linear-gradient(135deg, rgb(0, 112, 74) 0%, rgb(34, 139, 34) 100%);
}
/* FAQ Section */
.faq-section {
    background: white;
}

/* Accordion Styles */
.accordion-item {
    border: none;
    border-radius: 10px !important;
    margin-bottom: 15px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    overflow: hidden;
}

.accordion-button {
    background: white;
    color: var(--primary);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 20px 25px;
    border: none;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background: var(--primary) !important;
    color: white !important;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232a4b8d'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: scale(1.2);
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: var(--gradient);
    color: white;
    border-radius: 50%;
    margin-right: 15px;
    font-size: 0.9rem;
    font-weight: 600;
}

.accordion-button:not(.collapsed) .faq-number {
    background: rgba(255,255,255,0.2);
    color: white;
}

.accordion-body {
    padding: 25px;
    background: var(--light);
    color: var(--dark);
    line-height: 1.7;
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .accordion-button {
        padding: 15px 20px;
        font-size: 1rem;
    }
    
    .accordion-body {
        padding: 20px;
    }
 
}

@media (max-width: 576px) {
    .faq-number {
        width: 25px;
        height: 25px;
        font-size: 0.8rem;
        margin-right: 10px;
    }
   
}

.cta-wrapper{
  position: relative;
  background: #26568e;
  padding: 40px;
  border-radius: 10px;
  z-index: 1;
}

.cta-wrapper::before{
  content: "";
  position: absolute;
  background-image: url(../img/cta_bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 10px;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0px;
  opacity: .3;
  z-index: -1;
}

.cta-text h1{
  color: white;
  font-size: 40px;
  text-transform: capitalize;
  margin-bottom: 15px;
}

.cta-text p{
  color: #e7e2e2;
}

.cta-number{
  font-size: 32px;
  color: white !important;
  font-weight: 700;
}

.cta-number i{
  margin-right: 15px;
}

.cta-divider{
  position: relative;
}

.cta-divider::before {
  position: absolute;
  content: close-quote;
  width: 2px;
  bottom: 0;
  background-color: white;
  right: -118px;
  top: 0;
}

.cta-divider:after {
  width: 0px;
  position: absolute;
  content: close-quote;
  height: 0px;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 7px solid #e7e2e2;
  top: 50%;
  transform: translateY(-50%);
  right: -124px;
}
/* About Us Section */
.about-section {
    background: var(--light);
}


/* Feature Items */
.about-features {
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 5px;
    padding: 10px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1.5rem;
    color: white;
}

.feature-content h5 {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 8px;
}

.feature-content p {
    color: var(--dark);
    opacity: 0.8;
    margin: 0;
    line-height: 1.5;
}

/* Stats */
.about-stats {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin: 25px 0;
    justify-content: left;
}

.stat {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    min-width: 120px;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--dark);
    opacity: 0.8;
}

/* Visual Section */
.about-visual {
    position: relative;
}

.visual-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.main-card {
    padding: 25px;
}

.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.card-header i {
    width: 40px;
    height: 40px;
    background: var(--gradient);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 15px;
}

.card-header h6 {
    color: var(--primary);
    font-weight: 600;
    margin: 0;
}

.card-chart {
    display: flex;
    align-items: end;
    gap: 10px;
    height: 120px;
}

.chart-bar {
    flex: 1;
    background: var(--gradient);
    border-radius: 5px 5px 0 0;
    min-height: 20px;
    animation: growUp 1.5s ease-out;
}

@keyframes growUp {
    from { height: 0; }
}

.floating-card {
    position: absolute;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    z-index: 1;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.9);
}

.floating-card i {
    color: var(--primary);
    margin-right: 10px;
    font-size: 1.2rem;
}

.floating-card span {
    color: var(--dark);
    font-weight: 500;
    font-size: 0.9rem;
}

.card-1 {
    top: 20%;
    right: 10%;
    animation: float 4s ease-in-out infinite;
}

.card-2 {
    bottom: 30%;
    left: 5%;
    animation: float 5s ease-in-out infinite 1s;
}

.card-3 {
    bottom: 20%;
    right: 20%;
    animation: float 6s ease-in-out infinite 0.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.service-card {
    background: #2C2C54;
    padding: 25px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all .3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    background: linear-gradient(45deg, #6C63FF, #FF4D8A);
    opacity: 0.10;
    top: -20px;
    right: -20px;
    border-radius: 50%;
    transition: 0.3s ease;
}

.service-card:hover::before {
    transform: scale(1.3);
    opacity: 0.25;
}

.service-card h4 {
    color: #FFFFFF;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.service-card p {
    color: #dcdcdc;
    margin: 0;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

/* ICON STYLE */
.service-icon {
    font-size: 38px;
    padding: 12px;
    border-radius: 50%;
    background: var(--gradient);
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 75px;
    height: 75px;
}
.dp-box {
    background: #ffffff;
    padding: 15px 18px;
    border-radius: 14px;
    display: flex;
    gap: 15px;
    border: 1px solid rgb(5 157 149);
    transition: 0.3s ease;
}

.dp-box:hover {
    transform: translateX(6px);
    background: #252536;
    color:white;
}

.dp-box p {
    margin: 0;
    font-size: 0.95rem;
}

.dp-icon {
    font-size: 28px;
    background: var(--gradient);
    -webkit-background-clip: text;
    color: transparent;
}




/* Responsive */
@media (max-width: 991px) {

    
    .about-stats {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .feature-item {
        padding: 15px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        margin-right: 15px;
    }
    
    .feature-icon i {
        font-size: 1.2rem;
    }
    
    .about-stats {
        gap: 20px;
    }
    
    .stat {
        min-width: 100px;
        padding: 15px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .floating-card {
        display: none;
    }
}

@media (max-width: 576px) {
    .about-features {
        margin-bottom: 30px;
    }
    .whydp-section .section-title {
        text-align: center;
        margin: auto;
        display: block;
    }
    .whydp-section .section-subtitle {
        text-align: center;
        margin-top: 25px;
    }
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .about-stats {
        gap: 15px;
    }
    
    .stat {
        flex: 1;
        min-width: auto;
    }
    .survey-preview img {
        width:100%;
    }
    .navbar-brand img {
        width: 130px;
    }
    .hero-title {
        margin-top:0;
    }
    .about-visual {
        margin: 50px 0;
    }
    .btn-outline-light,
    .btn-outline-primary,
    .btn-primary {
        padding: 8px !important;
    font-size: 14px !important;
    }
    .cta-number {
        font-size: 22px;
    }
    .cta-area {
            overflow: hidden;
    }
    .hero-buttons {
        margin-bottom: 0px;
    }
    .cta-text h1 {
        font-size: 30px;
    }
}

