@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Outfit:wght@500;700;800&display=swap');

:root {
    /* Brand Colors - Physics Wallah Inspired */
    --pw-primary: #1B9C85;
    /* Modern Teal/Green - energetic yet trusted */
    --pw-primary-dark: #126e5d;
    --pw-accent: #facc15;
    /* Subtle yellow for highlights */

    /* Neutral Palette - Premium Education Feel */
    --text-main: #111827;
    /* Near black */
    --text-body: #4b5563;
    /* Readable gray */
    --text-light: #9ca3af;

    /* Surfaces */
    --bg-body: #ffffff;
    --bg-soft: #f8fafc;
    --bg-card: #ffffff;

    /* UI Tokens */
    --shadow-soft: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-medium: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
    --shadow-float: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1.25rem;
    /* Modern rounded feel */

    /* Layout */
    --container-max: 1140px;
}

/* Base Reset & Typography */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-body);
    background-color: var(--bg-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.btn-font {
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* Animation Utilities */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

/* Navbar - Clean & Sticky */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    padding: 1rem 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo span {
    color: var(--pw-primary);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-body);
}

.nav-links a:hover {
    color: var(--pw-primary);
}

/* Hero Section */
.hero {
    padding-top: 140px;
    /* Account for fixed header */
    padding-bottom: 100px;
    background:
        radial-gradient(circle at 10% 20%, rgba(27, 156, 133, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(27, 156, 133, 0.03) 0%, transparent 40%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231B9C85' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-left {
    position: relative;
    z-index: 1;
}

.hero-deco-img {
    position: absolute;
    top: -60px;
    right: 40px;
    width: 280px;
    opacity: 0.04;
    z-index: -1;
    pointer-events: none;
    transform: rotate(15deg);
    transition: all 0.5s ease;
}

.hero-deco-img img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-left:hover .hero-deco-img {
    transform: rotate(0deg) scale(1.05);
    opacity: 0.08;
}

@media (max-width: 991px) {
    .hero-deco-img {
        width: 200px;
        top: -30px;
        right: 0;
    }
}

@media (max-width: 768px) {
    .hero-deco-img {
        width: 150px;
        top: -20px;
        right: 10px;
        opacity: 0.05;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(27, 156, 133, 0.08);
    /* Transparent Brand Color */
    color: var(--pw-primary-dark);
    border-radius: 99px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(27, 156, 133, 0.1);
}

.dot-pulse {
    width: 8px;
    height: 8px;
    background-color: var(--pw-primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(27, 156, 133, 0.4);
    }

    70% {
        box-shadow: 0 0 0 6px rgba(27, 156, 133, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(27, 156, 133, 0);
    }
}

.hero-title {
    font-size: 3.75rem;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    color: var(--text-main);
}

.text-gradient {
    color: var(--pw-primary-dark);
    font-weight: 800;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.hero-sub {
    font-size: 1.25rem;
    color: var(--text-body);
    margin-bottom: 32px;
    max-width: 90%;
}

/* Premium Card */
.coupon-card {
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-float);
    border: 1px solid rgba(0, 0, 0, 0.03);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease;
}

.coupon-card:hover {
    transform: translateY(-5px);
}

/* Top accent bar for card */
.coupon-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--pw-primary);
}

.card-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    display: block;
}

.code-wrapper {
    background: var(--bg-soft);
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    padding: 12px 16px;
    margin-bottom: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    gap: 12px;
}

.code-text {
    font-family: 'Outfit', monospace;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: 2px;
}

.copy-btn {
    background: white;
    border: 1px solid #e5e7eb;
    color: var(--text-body);
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
    box-shadow: var(--shadow-soft);
}

.copy-btn:hover {
    color: var(--pw-primary);
    border-color: var(--pw-primary);
    transform: translateY(-1px);
}

.micro-trust {
    font-size: 0.75rem;
    color: #94a3b8;
    margin-top: 8px;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.cta-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 16px 32px;
    background: var(--pw-primary);
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 6px rgba(27, 156, 133, 0.25);
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: var(--pw-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 12px rgba(27, 156, 133, 0.3);
}

.card-note {
    margin-top: 16px;
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Trust Bar */
.trust-bar {
    padding: 3rem 0;
    border-bottom: 1px solid var(--bg-soft);
    background: white;
}

.trust-content {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--text-body);
}

.trust-icon {
    width: 44px;
    height: 44px;
    background: rgba(27, 156, 133, 0.1);
    color: var(--pw-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Sections General */
.section {
    padding: 100px 0;
}

.section-head {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-head h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.section-head p {
    font-size: 1.15rem;
    color: var(--text-body);
}

.section-lead-text {
    max-width: 800px;
    margin: 24px auto 0;
    font-size: 1.05rem;
    color: var(--text-body);
    line-height: 1.7;
    opacity: 0.95;
    font-weight: 500;
}

.trust-bottom-line {
    text-align: center;
    margin-top: 60px;
    font-size: 1.1rem;
    color: var(--pw-primary-dark);
    font-weight: 600;
    opacity: 0.9;
    letter-spacing: 0.01em;
}

.feature-icon-wrapper {
    width: 64px;
    height: 64px;
    background: rgba(27, 156, 133, 0.08);
    /* Soft primary bg */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--pw-primary);
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    background: rgba(27, 156, 133, 0.15);
}

.feature-desc {
    margin-top: 12px;
    color: var(--text-body);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Feature Grid */
.grid-cols-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.feature-card {
    padding: 32px;
    background: white;
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(27, 156, 133, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: inline-block;
}

/* Featured Offer Box */
.featured-section {
    background: var(--bg-soft);
}

.offer-box {
    background: var(--pw-primary);
    border-radius: var(--radius-lg);
    padding: 60px;
    text-align: center;
    color: white;
    box-shadow: var(--shadow-medium);
    position: relative;
    overflow: hidden;
}

.offer-box h2 {
    color: white;
    margin-bottom: 1rem;
}

.offer-box p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.offer-box .btn-white {
    background: white;
    color: var(--pw-primary-dark);
    padding: 16px 40px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    display: inline-block;
    font-size: 1.1rem;
    transition: transform 0.2s;
}

.offer-box .btn-white:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.featured-code-container {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    padding: 12px 20px;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
    margin-top: 10px;
}

.featured-code {
    font-family: 'Outfit', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: white;
}

.featured-copy-btn {
    background: white;
    border: none;
    color: var(--pw-primary);
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.featured-copy-btn:hover {
    transform: translateY(-2px);
    background: #f0fdf9;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.featured-trust {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.featured-trust span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Course Cards */
.course-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.course-card {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.course-card:hover {
    box-shadow: var(--shadow-medium);
    border-color: rgba(27, 156, 133, 0.2);
    transform: translateY(-4px);
}

.card-thumb {
    width: 100%;
    height: 160px;
    position: relative;
    overflow: hidden;
    background: #f1f5f9;
}

.card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.course-card:hover .card-thumb img {
    transform: scale(1.08);
}

.card-content {
    padding: 24px;
}

.course-card h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
}

.course-tag {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--pw-primary-dark);
    background: rgba(255, 255, 255, 0.95);
    padding: 4px 10px;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.arrow-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    color: var(--pw-primary);
    margin-top: 1rem;
    transition: transform 0.2s ease;
}

.arrow-link:hover {
    transform: translateX(4px);
}

/* Steps Grid */
.steps-grid {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.step-card {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--radius-md);
    padding: 32px;
    flex: 1;
    min-width: 250px;
    max-width: 320px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(27, 156, 133, 0.15);
}

.step-icon {
    width: 56px;
    height: 56px;
    background: var(--bg-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--pw-primary-dark);
}

.step-badge {
    display: inline-block;
    background: rgba(27, 156, 133, 0.1);
    color: var(--pw-primary);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.step-code-highlight {
    font-family: 'Outfit', monospace;
    font-weight: 700;
    background: #e6fffa;
    color: var(--pw-primary-dark);
    padding: 2px 6px;
    border-radius: 4px;
}

.step-reassurance {
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-body);
    opacity: 0.8;
}

/* FAQ */
.accordion-item {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    overflow: hidden;
    transition: border 0.3s;
}

.accordion-item:hover {
    border-color: #d1d5db;
}

.accordion-header {
    width: 100%;
    padding: 20px 24px;
    text-align: left;
    background: transparent;
    border: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    color: var(--text-main);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 24px;
}

.accordion-content p {
    padding-bottom: 24px;
    color: var(--text-body);
}

.accordion-item.active .accordion-content {
    /* Height handled by JS */
}


/* About PW Section */
.about-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-bottom: 60px;
}

.about-card {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-card.reverse-layout {
    flex-direction: row-reverse;
}

.about-img {
    flex: 0 0 40%;
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.about-img img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

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

.img-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 16px;
    font-size: 0.85rem;
    text-align: center;
    backdrop-filter: blur(4px);
}

.about-content {
    flex: 1;
}

.about-content h3 {
    font-family: 'Outfit', sans-serif;
    color: var(--pw-primary-dark);
    margin-bottom: 16px;
    font-size: 1.5rem;
}

.about-content p {
    color: var(--text-body);
    margin-bottom: 16px;
    line-height: 1.7;
}

.about-list {
    margin: 20px 0;
    padding-left: 20px;
    color: var(--text-body);
}

.about-list li {
    margin-bottom: 12px;
}

/* Philosophy Grid */
.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.philosophy-item {
    background: white;
    padding: 24px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.01);
    transition: transform 0.3s ease;
}

.philosophy-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.phi-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.philosophy-item h4 {
    color: var(--pw-primary-dark);
    margin-bottom: 8px;
    font-weight: 700;
}

.about-disclaimer {
    background: #fff3cd;
    color: #856404;
    padding: 16px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    border: 1px solid #ffeeba;
    text-align: center;
}

@media (max-width: 768px) {

    .about-card,
    .about-card.reverse-layout {
        flex-direction: column;
    }

    .about-img {
        width: 100%;
    }
}

/* Footer */
footer {
    background: #0f172a;
    /* Dark Navy - Very premium footer */
    color: white;
    padding: 80px 0 40px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 60px;
}

.footer h3 {
    color: white;
    margin-bottom: 20px;
}

.footer p {
    color: #94a3b8;
    max-width: 300px;
}

.footer-link {
    display: block;
    color: #94a3b8;
    margin-bottom: 12px;
}

.footer-link:hover {
    color: white;
}

.copyright {
    text-align: center;
    color: #64748b;
    font-size: 0.9rem;
}

/* Mobile */
@media (max-width: 768px) {
    .navbar .nav-links {
        display: none;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-badge {
        margin: 0 auto 20px;
    }

    .trust-content {
        gap: 2rem;
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* Copy Toast */
.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: white;
    color: var(--pw-primary-dark);
    padding: 12px 24px;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1000;
    border: 1px solid rgba(27, 156, 133, 0.2);
}

.toast.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.toast svg {
    color: var(--pw-primary);
}

@media (max-width: 768px) {
    .toast {
        bottom: 20px;
        width: 90%;
        justify-content: center;
    }
}

/* Legal Page Styling */
.legal-page {
    background-color: #f8fafc;
}

.legal-section {
    padding-top: 140px;
    padding-bottom: 80px;
}

.legal-content {
    background: white;
    padding: 48px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-medium);
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h2 {
    font-family: 'Outfit', sans-serif;
    color: var(--pw-primary-dark);
    font-size: 1.5rem;
    margin-top: 40px;
    margin-bottom: 16px;
    position: relative;
    padding-bottom: 12px;
}

.legal-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--pw-primary);
    border-radius: 2px;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p,
.legal-content li {
    color: var(--text-body);
    line-height: 1.75;
    margin-bottom: 16px;
    font-size: 1.05rem;
}

.legal-content ul {
    margin-bottom: 24px;
    padding-left: 20px;
}

.legal-content li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 8px;
}

@media (max-width: 768px) {
    .legal-content {
        padding: 24px;
    }

    .legal-section {
        padding-top: 120px;
    }
}