/* === Kallarackal Family Trust - style.css (Optimized v3 - Overflow Fixed) === */

/* --- Base Styles & Variables --- */
:root {
    /* Refined Color Palette */
    --primary-color: #7E5C4A;    /* Medium Brown */
    --secondary-color: #A5846E;  /* Lighter, derived from primary */
    --accent-color: #C4A989;     /* Even lighter, for highlights */
    --light-bg: #F7F2EC;         /* A slightly off-white for subtlety */
    --dark-bg: #3B2F2F;          /* Dark Brown */
    --light-text: #3B2F2F;       /* Dark Brown on light background */
    --dark-text: #F2D7B6;        /* Light Beige on dark background */
    --light-card-bg: #FFFFFF;
    --dark-card-bg: #4a3f3f;     /* Slightly lighter than dark-bg */
    --light-border: #e0d5c8;
    --dark-border: #5c5050;
    --navbar-bg-light: rgba(247, 242, 236, 0.85);
    --navbar-bg-dark: rgba(59, 47, 47, 0.85);
    --shadow-light: 0 8px 25px rgba(59, 47, 47, 0.1);
    --shadow-dark: 0 8px 25px rgba(0, 0, 0, 0.3);

    /* Font Variables (Montserrat & Lato) */
    --font-primary: 'Lato', sans-serif;
    --font-heading: 'Montserrat', sans-serif;

    /* Other Variables */
    --transition-speed: 0.4s;
    --border-radius: 12px;
}

/* --- Dark Mode Overrides for Variables --- */
body.dark-mode {
    --primary-color: #F2D7B6;    /* Light Beige as primary highlight */
    --secondary-color: #A5846E;
    --accent-color: #7E5C4A;
    background-color: var(--dark-bg);
    color: var(--dark-text);
}

/* --- Global Styles --- */
html, body {
    /* MODIFIED: This is the fix for the horizontal scroll issue */
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
    box-sizing: border-box;
}

*, *:before, *:after {
    box-sizing: inherit;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-primary);
    font-weight: 400;
    line-height: 1.7;
    background-color: var(--light-bg);
    color: var(--light-text);
    transition: background-color var(--transition-speed) ease, color var(--transition-speed) ease;
    position: relative;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    margin-bottom: 1rem;
    line-height: 1.3;
    font-weight: 700;
}

h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
    /* Gradient Text Style */
    background: linear-gradient(45deg, var(--primary-color), var(--light-text));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

body.dark-mode h2 {
    background: linear-gradient(45deg, var(--primary-color), var(--dark-text));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}


h2::after { /* Underline animation */
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
    transition: width var(--transition-speed) ease;
}

h2:hover::after {
    width: 120px;
}

h3 {
    font-weight: 600;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}

a:hover {
    color: var(--secondary-color);
}

p {
    margin-bottom: 1rem;
}

/* --- Animated Gradient Background --- */
@keyframes gradientAnimation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(-45deg, #f2d7b6, #f8f4f0, #d1bfa9, #f7f2ec);
    background-size: 400% 400%;
    animation: gradientAnimation 25s ease infinite;
    opacity: 0.7; /* Made slightly more subtle */
    transition: opacity 0.5s ease, background 0.5s ease;
}

body.dark-mode::before {
     background: linear-gradient(-45deg, #3B2F2F, #2a2121, #413636);
     background-size: 400% 400%;
     animation: gradientAnimation 35s ease infinite;
     opacity: 1;
}

main {
    position: relative;
    z-index: 1;
}

/* --- Header & Navbar --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--navbar-bg-light);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-light);
    transition: background-color var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

body.dark-mode .site-header {
    background-color: var(--navbar-bg-dark);
    box-shadow: var(--shadow-dark);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-brand a {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--light-text);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

body.dark-mode .nav-brand a {
    color: var(--dark-text);
}

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

.nav-links a {
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 0.5rem 0;
    position: relative;
    color: var(--light-text);
    transition: color var(--transition-speed);
}

body.dark-mode .nav-links a {
    color: var(--dark-text);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transition: width var(--transition-speed) ease;
    border-radius: 2px;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover {
     color: var(--primary-color);
}
body.dark-mode .nav-links a:hover {
     color: var(--primary-color);
}

.nav-extra {
    display: flex;
    align-items: center;
    gap: 1rem;
}

#darkModeToggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-text);
    transition: color var(--transition-speed), transform 0.3s ease;
}
body.dark-mode #darkModeToggle {
    color: var(--dark-text);
}
#darkModeToggle svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}
#darkModeToggle:hover {
    transform: scale(1.15);
}
.dark-mode .sun { display: block; }
.dark-mode .moon { display: none; }
body:not(.dark-mode) .sun { display: none; }
body:not(.dark-mode) .moon { display: block; }

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 2.2rem;
    cursor: pointer;
    color: var(--light-text);
    z-index: 1001;
}
body.dark-mode .mobile-nav-toggle {
    color: var(--dark-text);
}

/* --- Hero Slider --- */
.hero-slider {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
    margin-top: 70px; /* Adjust based on navbar height */
    background-color: var(--dark-bg);
    z-index: 1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease-in-out, transform 1.2s ease-in-out;
    transform: scale(1.05);
}

.slide.active {
    opacity: 1;
    z-index: 1;
    transform: scale(1);
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6) contrast(1.05);
}

.slide-caption {
    position: absolute;
    bottom: 12%;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    background: linear-gradient(to right, rgba(59, 47, 47, 0.7), rgba(126, 92, 74, 0.7));
    padding: 1.5rem 3rem;
    border-radius: var(--border-radius);
    text-align: center;
    font-size: 2.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    opacity: 0;
    animation: slideCaptionFadeIn 1.2s ease forwards;
    animation-delay: 0.6s;
    border: 1px solid rgba(242, 215, 182, 0.3);
}

.slide.active .slide-caption {
    opacity: 1;
}

@keyframes slideCaptionFadeIn {
    from { transform: translate(-50%, 30px); opacity: 0; }
    to { transform: translate(-50%, 0); opacity: 1; }
}

/* --- Content Sections --- */
.content-section {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.section-alt {
    background: linear-gradient(135deg, rgba(255,255,255,0.5) 0%, rgba(253,250,246,0.5) 100%);
    border-top: 1px solid var(--light-border);
    border-bottom: 1px solid var(--light-border);
}

body.dark-mode .section-alt {
    background: linear-gradient(160deg, rgba(74,63,63,0.5) 0%, rgba(90,74,74,0.5) 100%);
    border-top: 1px solid var(--dark-border);
    border-bottom: 1px solid var(--dark-border);
}

/* --- Scroll Reveal Animation Styles --- */
.reveal-bottom-initial,
.reveal-left-initial,
.reveal-right-initial,
.reveal-scale-initial,
.reveal-fade-initial {
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275),
                transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    will-change: transform, opacity;
}

.reveal-bottom-initial { transform: translateY(50px); }
.reveal-left-initial { transform: translateX(-60px); }
.reveal-right-initial { transform: translateX(60px); }
.reveal-scale-initial { transform: scale(0.9); }
.reveal-fade-initial { transform: none; }

.is-visible {
    opacity: 1 !important;
    transform: translate(0, 0) scale(1) !important;
}

.highlight-item,
.official-card,
.gallery-item {
    transition: opacity 0.7s ease-out, transform 0.7s ease-out, box-shadow 0.4s ease;
}

/* --- About & Guardian Sections --- */
.about-content-grid, .guardian-content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 3rem;
}
.guardian-content-grid {
    grid-template-columns: 1fr 2fr;
}

.about-video img, .guardian-image img {
    width: 100%;
    max-width: 320px;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    margin: 0 auto;
    border-radius: 50%;
    box-shadow: var(--shadow-light);
    border: 6px solid var(--accent-color);
    padding: 5px;
    background-color: var(--light-bg);
}
body.dark-mode .about-video img, body.dark-mode .guardian-image img {
    box-shadow: var(--shadow-dark);
    border-color: var(--primary-color);
    background-color: var(--dark-card-bg);
}

.guardian-text h3 {
    font-size: 2.2rem;
    color: var(--light-text);
    margin-bottom: 0.5rem;
}
body.dark-mode .guardian-text h3 { color: var(--dark-text); }
.guardian-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 2rem;
}
.guardian-text blockquote {
    margin-top: 2.5rem;
    padding-left: 2rem;
    border-left: 5px solid var(--accent-color);
    font-style: italic;
    font-size: 1.2rem;
    color: var(--secondary-color);
}

/* --- Trust Details Section --- */
#trust-details p {
     max-width: 850px;
     margin-left: auto;
     margin-right: auto;
     text-align: center;
     font-size: 1.1rem;
}

/* --- Highlights Section --- */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.highlight-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    cursor: pointer;
    border: 1px solid var(--light-border);
}
body.dark-mode .highlight-item {
    box-shadow: var(--shadow-dark);
    border-color: var(--dark-border);
}
.highlight-item img {
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.highlight-item:hover img {
    transform: scale(1.12);
}
.highlight-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(59, 47, 47, 0.95), transparent);
    color: #fff;
    padding: 4rem 2rem 2rem;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.highlight-item:hover .highlight-overlay {
    transform: translateY(0);
}
.highlight-overlay h3 {
    margin-bottom: 0.75rem;
    font-size: 1.6rem;
    color: var(--dark-text);
    text-shadow: 1px 1px 5px rgba(0,0,0,0.4);
}
.highlight-overlay p {
    font-size: 1rem;
    margin-bottom: 0;
    color: #e0d5c8;
}

/* --- Officials Section --- */
#officials {
   background-color: transparent; /* Show animated background */
   border-top: none;
   border-bottom: none;
}
.officials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}
.officials-row-2 {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}
.official-card, .additional-official {
    background: var(--light-card-bg);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--light-border);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
body.dark-mode .official-card, body.dark-mode .additional-official {
    background: var(--dark-card-bg);
    box-shadow: var(--shadow-dark);
    border-color: var(--dark-border);
}
.official-card:hover, .additional-official:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 30px rgba(59, 47, 47, 0.15);
}
body.dark-mode .official-card:hover, body.dark-mode .additional-official:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}
.official-card img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    border: 6px solid var(--accent-color);
}
body.dark-mode .official-card img { border-color: var(--primary-color); }
.official-card h3 {
    margin-bottom: 0.25rem;
    font-size: 1.5rem;
    color: var(--light-text);
}
body.dark-mode .official-card h3 { color: var(--dark-text); }
.official-card h4 {
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 1rem;
    color: var(--secondary-color);
    margin-bottom: 0;
}
.additional-officials-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}
.additional-official {
    padding: 1.5rem;
}
.additional-official .name {
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--light-text);
    margin-bottom: 0;
}
body.dark-mode .additional-official .name { color: var(--dark-text); }

/* --- Scrolling Gallery Section --- */
#gallery {
    padding-top: 80px;
    padding-bottom: 80px;
}
.full-width-container {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
}
.scrolling-gallery-wrapper {
    width: 100%;
    overflow: hidden;
    margin-top: 3rem;
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}
.gallery-scroll-row {
    display: flex;
    width: 100%;
    margin-bottom: 1.5rem;
}
.gallery-row-inner {
    display: flex;
    flex-shrink: 0;
    gap: 1.5rem;
    animation: scrollLeftLoop 50s linear infinite;
    will-change: transform;
}
.gallery-row-inner.reverse-scroll {
    animation-name: scrollRightLoop;
    animation-duration: 60s;
}
.gallery-scroll-row:hover .gallery-row-inner {
    animation-play-state: paused;
}
@keyframes scrollLeftLoop {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@keyframes scrollRightLoop {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}
.gallery-scroll-item {
    flex-shrink: 0;
    width: auto;
    height: 220px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: transform 0.4s ease, filter 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
    border: 1px solid var(--light-border);
}
body.dark-mode .gallery-scroll-item {
    box-shadow: var(--shadow-dark);
    border-color: var(--dark-border);
}
.gallery-scroll-item img {
    display: block;
    height: 100%;
    width: auto;
    min-width: 160px;
    object-fit: cover;
}
.gallery-scroll-item:hover {
    transform: scale(1.08);
    z-index: 10;
    box-shadow: 0 12px 35px rgba(59, 47, 47, 0.2);
}
@media (prefers-reduced-motion: reduce) {
  .gallery-row-inner { animation: none; }
}

/* --- Footer --- */
.site-footer-bottom {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #2a2121 100%);
    color: var(--dark-text);
    padding: 60px 0 30px;
    margin-top: 60px;
    font-size: 1rem;
    border-top: 5px solid var(--primary-color);
    line-height: 1.8;
    position: relative;
    z-index: 10;
}
body.dark-mode .site-footer-bottom { border-top-color: var(--primary-color); }
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}
.footer-column h4 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    position: relative;
    padding-bottom: 0.8rem;
}
.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}
.footer-column a { color: var(--dark-text); }
.footer-column a:hover { color: var(--primary-color); }
.footer-contact i {
    margin-right: 12px;
    color: var(--secondary-color);
    width: 22px;
    text-align: center;
}
.social-links {
    display: flex;
    gap: 1.2rem;
    margin-top: 0.5rem;
}
.social-links a {
    color: var(--dark-text);
    font-size: 1.8rem;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: rgba(242, 215, 182, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}
.social-links a:hover {
    transform: translateY(-5px) scale(1.1);
    color: #fff;
    background-color: var(--primary-color);
}
.footer-copyright {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--dark-border);
    font-size: 0.9rem;
    color: #a5846e;
}
.footer-copyright a { color: #a5846e; }

/* --- Malayalam Font Styles --- */
.malayalam-font,
#trust-details p {
    font-family: 'Manjari', sans-serif;
    font-size: 1.4em; /* Base size for desktop */
    line-height: 1.9;
}


/* --- Responsiveness (Mobile-First Polish) --- */

/* Medium Devices (Tablets) */
@media (max-width: 992px) {
    h2 { font-size: 2.5rem; }
    h3 { font-size: 1.6rem; }
    .guardian-content-grid, .about-content-grid { gap: 2rem; }
}

/* Small Devices (Tablets and large phones) */
@media (max-width: 768px) {
    body { line-height: 1.6; }
    .navbar { padding: 0.8rem 1rem; }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background-color: var(--light-bg);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2.5rem;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
        transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        padding-top: 60px;
        z-index: 999;
    }
    body.dark-mode .nav-links { background-color: var(--dark-card-bg); }
    .nav-links.active { right: 0; }
    .nav-links a { font-size: 1.3rem; }
    .mobile-nav-toggle { display: block; }
    .hero-slider { height: 60vh; }
    .slide-caption { font-size: 1.6rem; padding: 1rem 1.5rem; width: 90%; }
    .content-section { padding: 60px 0; }
    h2 { font-size: 2.2rem; margin-bottom: 2rem; }

    .about-content-grid, .guardian-content-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .about-video, .guardian-image { order: -1; }
    .about-video img, .guardian-image img { max-width: 250px; }

    .guardian-text, .about-text {
        text-align: left;
    }
    .guardian-text {
        padding: 0 15px;
    }

    .highlights-grid, .officials-grid, .additional-officials-list {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .officials-row-2 { flex-direction: column; gap: 1.5rem; }
    #trust-details p { padding: 0 15px; }

    .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 2.5rem; }
    .footer-column h4::after { left: 50%; transform: translateX(-50%); }
    .footer-contact p, .social-links { justify-content: center; }
    
    .gallery-scroll-item { height: 180px; }
    .gallery-row-inner { animation-duration: 40s; }
    .gallery-row-inner.reverse-scroll { animation-duration: 50s; }

    .malayalam-font, #trust-details p {
        font-size: 1.25em;
        line-height: 1.8;
        text-align: left;
    }
    #trust-details p { text-align: center; }
    #trust-details p:first-of-type { margin-top: 2rem; }
}

/* Extra Small Devices (Phones) */
@media (max-width: 480px) {
    h2 { font-size: 2rem; }
    h3 { font-size: 1.4rem; }
    .nav-brand a { font-size: 1.1rem; letter-spacing: 1px; }
    .hero-slider { height: 55vh; }
    .slide-caption { font-size: 1.3rem; padding: 0.8rem 1.2rem; }
    .official-card, .additional-official { padding: 1.5rem; }
    .official-card img { width: 120px; height: 120px; }
    .about-video img, .guardian-image img { max-width: 200px; }
    .site-footer-bottom { font-size: 0.9rem; }
    .social-links a { font-size: 1.5rem; width: 40px; height: 40px; }
    
    .gallery-scroll-item { height: 140px; }
    .gallery-row-inner { gap: 1rem; animation-duration: 35s; }
    .gallery-row-inner.reverse-scroll { animation-duration: 45s; }
    
    .malayalam-font, #trust-details p {
        font-size: 1.2em;
        line-height: 1.75;
    }
}