 /* Base Mobile Styles */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --success-color: #2ecc71;
    --shadow-light: 0 5px 15px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 8px 25px rgba(0, 0, 0, 0.12);
    --shadow-strong: 0 12px 35px rgba(0, 0, 0, 0.15);
}

/* * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    overflow-x: hidden;
} */

/* Design 1 - Modern Gradient with Animated Background */
.marquee {
           background-color: #fe0404;
            height: 25px;
  color: #ffffff;
  padding: 10px;
  font-weight: bold;
  font-size: 18px;
  text-align: center;
 

        }

        /* Tablets */
@media (max-width: 768px) {
  .marquee {
    font-size: 16px;
    padding: 4px;
    
  }
}

/* Mobile phones */
@media (max-width: 480px) {
  .marquee {
    font-size: 16px;
    padding-bottom: 1px;
    /* padding: 4px 4px; */
   
  }
}

.downclick {
    display: flex;
    padding: min(20px, 5vw);
    box-sizing: border-box;
    width: 100%;
    
    /* Mobile first - centered */
    justify-content: center;
    align-items: center;
}

.downclick-image {
    width: clamp(30px, 6vw, 50px);
    height: clamp(30px, 6vw, 50px);
    object-fit: contain;
    max-width: 100%;
}

/* Tablet - still centered if needed */
@media screen and (min-width: 481px) and (max-width: 768px) {
    .downclick {
        justify-content: center; /* Keep centered on tablet */
    }
}

/* Desktop - left aligned */
@media screen and (min-width: 769px) {
    .downclick {
        justify-content: flex-start; /* Left align on desktop */
    }
}

.tech-heading-1 {
    position: relative;
    font-size: 3.5rem;
    font-weight: 800;
    text-align: center;
    margin: 60px 0 40px;
    color: transparent;
    background: linear-gradient(135deg, 
        #3498db 0%, 
        #2ecc71 25%, 
        #9b59b6 50%, 
        #e74c3c 75%, 
        #f39c12 100%
    );
    background-size: 400% 400%;
    background-clip: text;
    -webkit-background-clip: text;
    animation: gradientFlow 8s ease infinite;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.tech-heading-1::before,
.tech-heading-1::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(52, 152, 219, 0.5), transparent);
    transform: translateY(-50%);
}

.tech-heading-1::before {
    left: 0;
}

.tech-heading-1::after {
    right: 0;
}

.tech-heading-1 span {
    display: block;
    font-size: 1.4rem;
    font-weight: 400;
    color: #6c757d;
    margin-top: 15px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.5s forwards;
}

@keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design 1 */
@media (max-width: 768px) {
    .tech-heading-1 {
        font-size: 2.5rem;
        margin: 40px 0 30px;
    }
    
    .tech-heading-1 span {
        font-size: 1.1rem;
    }
    
    .tech-heading-1::before,
    .tech-heading-1::after {
        width: 30%;
    }
}

/* Mobile Container */
.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

/* Mobile Animations */
@keyframes slideInUpMobile {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideInLeftMobile {
    from {
        transform: translateX(-30px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRightMobile {
    from {
        transform: translateX(30px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeInMobile {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes pulseMobile {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes bounceMobile {
    0%, 20%, 60%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    80% { transform: translateY(-5px); }
}

@keyframes shakeMobile {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

@keyframes floatMobile {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(3deg); }
}

@keyframes glowMobile {
    0%, 100% { box-shadow: 0 0 5px rgba(52, 152, 219, 0.3); }
    50% { box-shadow: 0 0 20px rgba(52, 152, 219, 0.6); }
}

/* Mobile Touch Effects */
.mobile-tap {
    transition: transform 0.1s ease, background-color 0.1s ease;
}

.mobile-tap:active {
    transform: scale(0.97);
    background-color: rgba(52, 152, 219, 0.1) !important;
}

/* Technologies Grid - Mobile First */
.technologies-grid {
    padding: 40px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.tech-section {
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.tech-section.mobile-visible {
    opacity: 1;
    transform: translateY(0);
}

.tech-section-title {
    font-size: 1.5rem;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(52, 152, 219, 0.2);
    display: flex;
    align-items: center;
    color: #e31e24;
    position: relative;
    overflow: hidden;
}

.tech-section-title:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
    animation: slideInLeftMobile 0.8s ease-out;
}

.tech-section-title i {
    margin-right: 12px;
    color: #3498db;
    background: rgba(52, 152, 219, 0.1);
    padding: 12px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    animation: pulseMobile 2s infinite;
}

/* Tech Cards - Mobile Optimized */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -10px;
    margin-left: -10px;
}

.col-lg-3, .col-md-4, .col-sm-6 {
    position: relative;
    width: 100%;
    padding-right: 10px;
    padding-left: 10px;
}

.mb-4 {
    margin-bottom: 20px !important;
}

.tech-card {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 100%;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: scale(0.9);
    animation: fadeInMobile 0.5s ease forwards;
    animation-delay: calc(var(--card-index, 0) * 0.1s);
}

.tech-card.mobile-loaded {
    opacity: 1;
    transform: scale(1);
    animation: slideInUpMobile 0.6s ease-out;
    animation-delay: calc(var(--card-index, 0) * 0.1s);
}

.tech-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.05) 0%, rgba(46, 204, 113, 0.05) 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tech-card.mobile-hover:before {
    opacity: 1;
}

.tech-card.mobile-hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
    border-color: #3498db;
    animation: glowMobile 1.5s infinite;
}

.tech-icon {
    font-size: 2.8rem;
    margin-bottom: 15px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.5s ease;
}

.tech-card.mobile-hover .tech-icon {
    transform: rotateY(180deg) scale(1.1);
}

.tech-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2c3e50;
    transition: color 0.3s ease;
}

.tech-card.mobile-hover .tech-name {
    color: #3498db;
    animation: pulseMobile 1s ease;
}

.tech-description {
     color: #232323;
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.5;
    min-height: 60px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;    /* Vendor-prefixed version */
    line-clamp: 3;            /* Standard property - add this! */
    overflow: hidden;
}

.tech-category {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(52, 152, 219, 0.1);
    color: #3498db;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tech-card.mobile-hover .tech-category {
    background: #3498db;
    color: white;
    transform: scale(1.1);
}

/* Technology Colors */
.tech-html { color: #e34f26; }
.tech-css { color: #1572b6; }
.tech-js { color: #f7df1e; text-shadow: 0 0 1px rgba(0,0,0,0.1); }
.tech-bootstrap { color: #7952b3; }
.tech-react { color: #61dafb; }
.tech-java { color: #007396; }
.tech-python { color: #3776ab; }
.tech-php { color: #777bb4; }
.tech-cpp { color: #00599c; }
.tech-csharp { color: #239120; }
.tech-mysql { color: #4479a1; }
.tech-mongodb { color: #47a248; }
.tech-node { color: #339933; }
.tech-django { color: #092e20; }
.tech-laravel { color: #ff2d20; }
.tech-wordpress { color: #21759b; }
.tech-word{ color: #00599c;}
.tech-photoshop { color: #31a8ff; }
.tech-illustrator { color: #ff9a00; }
.tech-premiere { color: #ea77ff; }
.tech-aftereffects { color: #9999ff; }
.tech-autocad { color: #ca3838; }
.tech-solidworks { color: #c93c3c; }
.tech-revit { color: #3196c7; }
.tech-tally { color: #0047ab; }
.tech-excel { color: #217346; }
.tech-linux { color: #fcc624; }
.tech-git { color: #f1502f; }
.tech-docker { color: #2496ed; }

/* Learning Path - Mobile */
.learning-path {
    padding: 40px 0;
    background: white;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    /* opacity: 0; */
    transform: translateY(20px);
}

.section-title.mobile-visible {
    opacity: 1;
    transform: translateY(0);
    animation: slideInUpMobile 0.8s ease-out;
}

.section-title h2 {
    font-size: 1.8rem;
    color: #e31e24;
    padding-bottom: 10px;
    position: relative;
    display: inline-block;
    margin-bottom: 10px;
}

.section-title h2:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: slideInLeftMobile 1s ease-out;
}

.section-title p {
    font-size: 1rem;
    color: rgb(23, 111, 188);
    max-width: 100%;
    margin: 15px auto 0;
    padding: 0 15px;
}

.path-card {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.05) 0%, rgba(46, 204, 113, 0.05) 100%);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
    border-left: 4px solid #3498db;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-30px);
}

.path-card.mobile-visible {
    opacity: 1;
    transform: translateX(0);
    animation: slideInRightMobile 0.6s ease-out;
    animation-delay: calc(var(--card-index, 0) * 0.15s);
}

.path-card.mobile-hover {
    transform: translateY(-5px);
    border-left-color: #2ecc71;
    box-shadow: var(--shadow-medium);
    animation: glowMobile 2s infinite;
}

.path-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2c3e50;
    display: flex;
    align-items: center;
}

.path-title i {
    margin-right: 10px;
    color: #3498db;
    background: rgba(52, 152, 219, 0.1);
    padding: 10px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    animation: floatMobile 3s ease-in-out infinite;
}

.path-card p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.path-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

.path-tech-item {
    padding: 6px 12px;
    background: white;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #3498db;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    /* opacity: 0; */
    transform: scale(0.8);
}

.path-card.mobile-visible .path-tech-item {
    opacity: 1;
    transform: scale(1);
    animation: bounceMobile 0.5s ease-out;
    animation-delay: calc(var(--item-index, 0) * 0.1s + 0.3s);
}

.path-card.mobile-hover .path-tech-item {
    background: #3498db;
    color: white;
    transform: translateY(-3px);
}

/* Lab Setup - Mobile */
.lab-setup {
    padding: 40px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e9ecef 100%);
}

.lab-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: var(--shadow-light);
    height: 100%;
    transition: all 0.3s ease;
    text-align: center;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
}

.lab-card.mobile-visible {
    opacity: 1;
    transform: translateY(0);
    animation: slideInUpMobile 0.6s ease-out;
    animation-delay: calc(var(--card-index, 0) * 0.1s);
}

.lab-card.mobile-hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
    animation: shakeMobile 0.5s ease;
}

.lab-icon {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(52, 152, 219, 0.1);
    border-radius: 12px;
    transition: all 0.5s ease;
}

.lab-card.mobile-hover .lab-icon {
    transform: rotate(360deg) scale(1.1);
    background: linear-gradient(135deg, #3498db 0%, #2ecc71 100%);
    color: white;
}

.lab-card h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: #2c3e50;
}

.lab-card p {
    color: #6c757d;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Mobile Swipe Indicators */
.swipe-hint {
    position: absolute;
    bottom: 10px;
    right: 10px;
    color: #6c757d;
    font-size: 0.8rem;
    opacity: 0.7;
    animation: pulseMobile 2s infinite;
    display: none;
}

/* Mobile Floating Elements */
.mobile-float {
    position: absolute;
    font-size: 2rem;
    opacity: 0.1;
    color: #3498db;
    z-index: 0;
    animation: floatMobile 6s ease-in-out infinite;
    display: none; /* Hidden on mobile by default */
}

/* Mobile Touch Ripple Effect */
.ripple {
    position: relative;
    overflow: hidden;
}

.ripple:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(52, 152, 219, 0.3);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}

.ripple.mobile-ripple:after {
    animation: rippleMobile 0.6s ease-out;
}

@keyframes rippleMobile {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }
    100% {
        transform: scale(30, 30);
        opacity: 0;
    }
}

/* Tablet Breakpoint (768px) */
@media (min-width: 768px) {
    body {
        font-size: 17px;
    }
    
    .container {
        max-width: 720px;
    }
    
    .technologies-grid,
    .learning-path,
    .lab-setup {
        padding: 60px 0;
    }
    
    .col-sm-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    .tech-section-title {
        font-size: 1.8rem;
        margin-bottom: 35px;
    }
    
    .tech-section-title i {
        width: 55px;
        height: 55px;
    }
    
    .tech-card {
        padding: 25px;
    }
    
    .tech-icon {
        font-size: 3rem;
        height: 75px;
    }
    
    .tech-name {
        font-size: 1.3rem;
    }
    
    .tech-description {
        font-size: 0.95rem;
        min-height: 70px;
    }
    
    .section-title h2 {
        font-size: 2.2rem;
    }
    
    .section-title p {
        font-size: 1.1rem;
        max-width: 80%;
    }
    
    .path-card {
        padding: 30px;
    }
    
    .path-title {
        font-size: 1.4rem;
    }
    
    .lab-card {
        padding: 30px;
    }
    
    .lab-icon {
        font-size: 2.8rem;
        width: 65px;
        height: 65px;
    }
    
    /* Show floating elements on tablet */
    .mobile-float {
        display: block;
    }
    
    /* Show swipe hint on tablet */
    .swipe-hint {
        display: block;
    }
}

/* Desktop Breakpoint (992px) */
@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
    
    .col-md-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
    
    .col-lg-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }
    
    .technologies-grid,
    .learning-path,
    .lab-setup {
        padding: 80px 0;
    }
    
    .tech-section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .tech-section-title i {
        width: 60px;
        height: 60px;
    }
    
    .tech-card {
        padding: 30px;
    }
    
    .tech-icon {
        font-size: 3.5rem;
        height: 80px;
    }
    
    .tech-name {
        font-size: 1.4rem;
    }
    
    .tech-description {
        font-size: 1rem;
        min-height: 80px;
    }
    
    .section-title h2 {
        font-size: 2.5rem;
        
    }
    
    .section-title p {
        font-size: 1.2rem;
        max-width: 70%;
    }
    
    .path-card {
        padding: 35px;
    }
    
    .path-title {
        font-size: 1.5rem;
    }
    
    .path-title i {
        width: 50px;
        height: 50px;
    }
    
    .lab-card {
        padding: 35px;
    }
    
    .lab-icon {
        font-size: 3rem;
        width: 70px;
        height: 70px;
    }
    
    /* Desktop hover effects (only on non-touch devices) */
    @media (hover: hover) and (pointer: fine) {
        .tech-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-strong);
            border-color: #3498db;
        }
        
        .tech-card:hover:before {
            opacity: 1;
        }
        
        .tech-card:hover .tech-icon {
            transform: rotateY(180deg);
        }
        
        .tech-card:hover .tech-name {
            color: #3498db;
        }
        
        .tech-card:hover .tech-category {
            background: #3498db;
            color: white;
            transform: scale(1.1);
        }
        
        .path-card:hover {
            transform: translateY(-8px);
            border-left-color: #2ecc71;
            box-shadow: var(--shadow-medium);
        }
        
        .path-card:hover .path-tech-item {
            background: #3498db;
            color: white;
            transform: translateY(-3px);
        }
        
        .lab-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-strong);
        }
        
        .lab-card:hover .lab-icon {
            transform: rotate(360deg) scale(1.1);
            background: linear-gradient(135deg, #3498db 0%, #2ecc71 100%);
            color: white;
        }
    }
}

/* Large Desktop Breakpoint (1200px) */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
    
    .technologies-grid,
    .learning-path,
    .lab-setup {
        padding: 100px 0;
    }
}

/* Mobile Orientation Specific */
@media (max-height: 500px) and (orientation: landscape) {
    .tech-card {
        padding: 15px;
    }
    
    .tech-icon {
        font-size: 2.2rem;
        height: 50px;
        margin-bottom: 10px;
    }
    
    .tech-name {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
    
    .tech-description {
           font-size: 0.85rem;
    min-height: 45px;
    display: -webkit-box;        /* Required for line-clamp to work */
    -webkit-box-orient: vertical; /* Required for line-clamp to work */
    -webkit-line-clamp: 2;       /* Vendor-prefixed version */
    line-clamp: 2;               /* Standard property - add this! */
    overflow: hidden;
    }
    
    .path-card {
        padding: 20px;
    }
    
    .path-title {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .path-title i {
        width: 40px;
        height: 40px;
        padding: 8px;
    }
    
    .lab-card {
        padding: 20px;
    }
    
    .lab-icon {
        font-size: 2rem;
        width: 50px;
        height: 50px;
        margin-bottom: 10px;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .tech-card,
    .path-card,
    .lab-card {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
        transition: none !important;
    }
    
    .tech-section,
    .section-title {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* Dark Mode Support */
/* @media (prefers-color-scheme: dark) {
    body {
        background-color: #ffffff !important;
        color: #000000 !important;
    }
    
    .technologies-grid {
        background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    }
    
    .tech-card {
        background: #2d2d2d;
        border-color: #404040;
        color: #e0e0e0;
    }
    
    .tech-name {
        color: #ffffff;
    }
    
    .tech-description {
        color: #b0b0b0;
    }
    
    .tech-category {
        background: rgba(52, 152, 219, 0.2);
    }
    
    .learning-path {
        background: #1a1a1a;
    }
    
    .path-card {
        background: rgba(52, 152, 219, 0.05);
        border-left-color: #3498db;
    }
    
    .path-title {
        color: #ffffff;
    }
    
    .path-card p {
        color: #b0b0b0;
    }
    
    .path-tech-item {
        background: #2d2d2d;
        color: #3498db;
    }
    
    .lab-setup {
        background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    }
    
    .lab-card {
        background: #2d2d2d;
        color: #e0e0e0;
    }
    
    .lab-card h4 {
        color: #ffffff;
    }
    
    .lab-card p {
        color: #b0b0b0;
    }
} */
