/*
 * Shri Gurudeo Junior College of Education - Custom Stylesheet
 * Concept 2: Rural Uplift (Modern-Simple, Clean, Green & Sand Accents)
 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700&display=swap');

:root {
    /* Color Palette */
    --primary: #14532d;       /* Deep Forest Green */
    --primary-light: #166534; /* Mid Forest Green */
    --primary-bg: #f0fdf4;    /* Light Sage Green background tint */
    --accent: #ca8a04;        /* Warm Ochre Gold / Sand */
    --accent-hover: #a16207;  /* Darker Ochre Gold */
    --accent-bg: #fef9c3;      /* Light Sand tint */
    --neutral-dark: #1f2937;  /* Charcoal */
    --neutral-light: #f9fafb; /* Off-white */
    --neutral-border: #e5e7eb;/* Light grey borders */
    --white: #ffffff;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
    
    /* Typography & Spacing */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--neutral-dark);
    background-color: var(--neutral-light);
    overflow-x: hidden;
}

a {
    color: var(--primary-light);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--primary);
    line-height: 1.25;
    margin-bottom: 0.75rem;
}

/* Layout Framework */
.inner-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

#page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header & Navigation */
.site-header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-top-bar {
    background-color: var(--primary);
    color: var(--white);
    font-size: 0.85rem;
    padding: 0.5rem 0;
}

.header-top-bar .inner-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.header-top-contact span {
    margin-right: 1.5rem;
    display: inline-flex;
    align-items: center;
}

.header-top-contact a {
    color: var(--white);
    font-weight: 500;
}

.header-top-contact a:hover {
    color: var(--accent-bg);
}

.main-head-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

#header-left-section {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

#header-logo-image img {
    height: 70px;
    width: auto;
    border-radius: var(--radius-sm);
}

#header-text #site-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0;
}

#header-text #site-title a {
    color: var(--primary);
}

#header-text #site-description {
    font-size: 0.8rem;
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Navigation Links */
.main-navigation {
    display: flex;
    align-items: center;
}

.menu ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.menu ul li {
    position: relative;
}

.menu ul li a {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--neutral-dark);
    font-size: 0.95rem;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
}

.menu ul li a:hover,
.menu ul li.current_page_item > a {
    color: var(--primary-light);
    border-bottom-color: var(--accent);
}

/* Dropdown styling */
.menu ul li ul.children {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    box-shadow: var(--shadow-md);
    border-radius: var(--radius-sm);
    min-width: 220px;
    padding: 0.5rem 0;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--neutral-border);
}

.menu ul li ul.children li a {
    padding: 0.5rem 1.25rem;
    display: block;
    font-size: 0.9rem;
    border-bottom: none;
}

.menu ul li ul.children li a:hover {
    background-color: var(--primary-bg);
    color: var(--primary);
}

.menu ul li:hover > ul.children {
    display: flex;
}

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--primary);
}

/* Banner Slider */
.big-slider-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    background-color: var(--neutral-dark);
    overflow: hidden;
    border-bottom: 5px solid var(--primary);
}

.big-slider {
    width: 100%;
    height: 100%;
}

.slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: none;
}

.slides.displayblock {
    opacity: 1;
    display: block;
    z-index: 1;
}

.slides figure {
    width: 100%;
    height: 100%;
}

.slides figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.slider-entry-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
    padding: 4rem 2rem 2rem 2rem;
    color: var(--white);
    z-index: 10;
}

.slider-entry-container h3.entry-title {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.slider-entry-container p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Slider Controls */
.slide-next, .slide-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 15;
    transition: var(--transition);
    border: 1px solid var(--neutral-border);
}

.slide-next:hover, .slide-prev:hover {
    background-color: var(--primary);
    color: var(--white);
}

.slide-next { right: 20px; }
.slide-prev { left: 20px; }

.slide-next::after { content: '→'; font-size: 1.25rem; font-weight: bold; }
.slide-prev::after { content: '←'; font-size: 1.25rem; font-weight: bold; }

/* Page Title Banner */
.header-post-title-container {
    background-color: var(--primary-bg);
    border-bottom: 1px solid var(--neutral-border);
    padding: 2.5rem 0;
    margin-bottom: 2rem;
}

.post-title-wrapper h1.header-post-title-class {
    font-size: 2.25rem;
    margin-bottom: 0;
}

/* Content Layout (Main + Sidebar) */
#main {
    flex: 1;
    padding: 2.5rem 0 4.5rem 0;
}

#main .inner-wrap {
    display: grid;
    grid-template-columns: 8fr 4fr;
    gap: 2.5rem;
}

#primary {
    min-width: 0;
    background-color: var(--white);
    border: 1px solid var(--neutral-border);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    box-shadow: var(--shadow);
}

/* Custom Underbar Divider for Headings */
.entry-content h2.wp-block-heading {
    position: relative;
    padding-bottom: 0.75rem;
    margin-bottom: 1.75rem;
    border-bottom: 2px solid var(--neutral-border);
}

.entry-content h2.wp-block-heading::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 90px;
    height: 2px;
    background: linear-gradient(to right, var(--primary), var(--accent));
}

/* Sidebar Styling */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.widget {
    background-color: var(--white);
    border: 1px solid var(--neutral-border);
    border-radius: var(--radius-md);
    padding: 1.75rem;
    box-shadow: var(--shadow);
    margin-top:14px;
}

.widget-title {
    font-size: 1.25rem;
    border-bottom: 2px solid var(--accent);
    padding-bottom: 0.5rem;
    margin-bottom: 1.25rem;
    color: var(--primary);
}
/* ===================================
   VIDEO SECTION
=================================== */

.custom-video-section {
    width: 100%;
    padding: 55px 20px 70px;
    background: #f8f8f8;
}


/* HEADING */

.video-section-header {
    text-align: center;
    margin-bottom: 35px;
}

.video-section-label {
    display: block;
    color: #f26522;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 7px;
}

.video-section-header h2 {
    margin: 0;
    color: #222;
    font-size: 32px;
    font-weight: 700;
}

.video-heading-line {
    width: 45px;
    height: 3px;
    background: #f26522;
    margin: 12px auto 0;
}


/* ===================================
   VIDEO GRID
=================================== */

.custom-video-grid {
    width: 100%;
    max-width: 1100px;

    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 28px;
}


/* CARD */

.custom-video-card {
    background: #fff;

    border-radius: 10px;

    overflow: hidden;

    cursor: pointer;

    box-shadow:
        0 5px 20px rgba(0, 0, 0, 0.08);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.custom-video-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 14px 35px rgba(0, 0, 0, 0.15);
}


/* ===================================
   THUMBNAIL
=================================== */

.video-thumbnail {
    width: 100%;
    height: 300px;

    position: relative;

    overflow: hidden;

    background: #111;
}


.video-thumbnail img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.5s ease;
}


.custom-video-card:hover .video-thumbnail img {
    transform: scale(1.07);
}


/* DARK OVERLAY */

.video-dark-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.03),
            rgba(0, 0, 0, 0.45)
        );

    transition: background 0.3s ease;
}


.custom-video-card:hover .video-dark-overlay {
    background: rgba(0, 0, 0, 0.35);
}


/* ===================================
   PLAY BUTTON
=================================== */

.video-play-button {
    position: absolute;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    width: 72px;
    height: 72px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.96);

    box-shadow:
        0 5px 25px rgba(0, 0, 0, 0.35),
        0 0 0 9px rgba(255, 255, 255, 0.18);

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}


.video-play-button span {
    color: #f26522;

    font-size: 26px;

    margin-left: 5px;

    transition: color 0.3s ease;
}


.custom-video-card:hover .video-play-button {
    transform:
        translate(-50%, -50%)
        scale(1.12);

    background: #f26522;
}


.custom-video-card:hover .video-play-button span {
    color: white;
}


/* WATCH BADGE */

.video-duration-badge {
    position: absolute;

    bottom: 14px;
    right: 14px;

    padding: 6px 12px;

    color: #fff;

    background: rgba(0, 0, 0, 0.7);

    border-radius: 4px;

    font-size: 12px;
    font-weight: 600;

    backdrop-filter: blur(4px);
}


/* ===================================
   CARD INFO
=================================== */

.video-card-info {
    padding: 18px 20px 20px;
}


.video-card-info h3 {
    margin: 0 0 6px;

    color: #222;

    font-size: 19px;
    font-weight: 600;
}


.video-card-info p {
    margin: 0;

    color: #777;

    font-size: 14px;

    line-height: 1.5;
}


/* ===================================
   VIDEO MODAL
=================================== */

.video-modal {
    display: none;

    position: fixed;

    inset: 0;

    z-index: 999999;

    background: rgba(0, 0, 0, 0.92);

    padding: 25px;

    align-items: center;
    justify-content: center;

    backdrop-filter: blur(5px);
}


.video-modal.active {
    display: flex;
}


/* MODAL BOX */

.video-modal-box {
    width: min(1000px, 94vw);

    position: relative;

    background: #111;

    border-radius: 10px;

    overflow: visible;

    box-shadow:
        0 20px 70px rgba(0, 0, 0, 0.7);

    animation: videoModalAnimation 0.3s ease;
}


@keyframes videoModalAnimation {

    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }

}


/* ===================================
   CLOSE BUTTON - CLEARLY VISIBLE
=================================== */

.video-modal-close {
    position: absolute;

    top: -20px;
    right: -20px;

    z-index: 1000001;

    width: 48px;
    height: 48px;

    padding: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 3px solid white;
    border-radius: 50%;

    background: #f26522;

    color: #fff;

    font-size: 34px;
    font-family: Arial, sans-serif;
    font-weight: 300;
    line-height: 1;

    cursor: pointer;

    box-shadow:
        0 5px 20px rgba(0, 0, 0, 0.5);

    transition:
        transform 0.25s ease,
        background 0.25s ease;
}


.video-modal-close:hover {
    background: #d94e0c;

    transform: rotate(90deg) scale(1.05);
}


/* ===================================
   VIDEO PLAYER
=================================== */

.video-player-wrapper {
    width: 100%;

    background: #000;

    border-radius: 10px 10px 0 0;

    overflow: hidden;
}


#modalVideoPlayer {
    width: 100%;

    max-height: 75vh;

    display: block;

    background: #000;
}


/* MODAL TITLE */

.video-modal-info {
    padding: 15px 20px;

    background: #171717;

    border-radius: 0 0 10px 10px;
}


.video-modal-info h3 {
    margin: 0;

    color: white;

    font-size: 17px;
    font-weight: 500;
}


/* ===================================
   TABLET
=================================== */

@media (max-width: 800px) {

    .custom-video-grid {
        grid-template-columns: 1fr;
    }

    .video-thumbnail {
        height: 280px;
    }

}


/* ===================================
   MOBILE
=================================== */

@media (max-width: 600px) {

    .custom-video-section {
        padding: 40px 12px 50px;
    }


    .video-section-header h2 {
        font-size: 27px;
    }


    .video-thumbnail {
        height: 220px;
    }


    .video-play-button {
        width: 58px;
        height: 58px;
    }


    .video-play-button span {
        font-size: 21px;
    }


    .video-modal {
        padding: 12px;
    }


    .video-modal-box {
        width: 100%;
    }


    .video-modal-close {
        top: -16px;
        right: -5px;

        width: 42px;
        height: 42px;

        font-size: 30px;
    }


    #modalVideoPlayer {
        max-height: 70vh;
    }

}
/* Info List Style */
.textwidget p {
    margin-bottom: 1rem;
}

.textwidget address {
    font-style: normal;
    background-color: var(--neutral-light);
    border-left: 4px solid var(--primary-light);
    padding: 0.75rem 1rem;
    margin: 1rem 0;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* News Scrolling Ticker widget */
.recent-news-items-scroll {
    overflow: hidden;
    height: 180px;
    position: relative;
}

.recent-news-items-scroll ul {
    list-style: none;
    position: absolute;
    width: 100%;
}

.news_li {
    padding: 0.75rem 0;
    border-bottom: 1px dashed var(--neutral-border);
}

.news_li:last-child {
    border-bottom: none;
}

.newspost-title {
    font-weight: 600;
    display: block;
    color: var(--neutral-dark);
}

.newspost-title:hover {
    color: var(--primary-light);
}

.widget-date-post {
    font-size: 0.8rem;
    color: #6b7280;
    margin-top: 0.25rem;
}

/* Cards & Layout Details */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.card {
    background-color: var(--white);
    border: 1px solid var(--neutral-border);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.card-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.card-title::before {
    content: '◈';
    color: var(--accent);
    font-weight: bold;
}

/* Clean Tables for Data Display */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background-color: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--neutral-border);
}

th, td {
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--neutral-border);
}

th {
    background-color: var(--primary-light);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 500;
}

tr:nth-child(even) td {
    background-color: var(--neutral-light);
}

tr:hover td {
    background-color: var(--primary-bg);
}

/* PDF/Document download link button */
.wp-block-file {
    background-color: var(--accent-bg);
    border: 1px solid #fef08a;
    border-radius: var(--radius-sm);
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1.5rem 0;
}

.wp-block-file a:not(.wp-block-file__button) {
    font-weight: 600;
    color: var(--neutral-dark);
}

.wp-block-file__button {
    background-color: var(--primary);
    color: var(--white) !important;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.wp-block-file__button:hover {
    background-color: var(--primary-light);
}

/* Formatted lists */
ol, ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
}

/* Photo Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow);
    aspect-ratio: 1;
    background-color: var(--neutral-dark);
}
.gallery-img {
    cursor: pointer;
}

.gallery-popup {
    display: none;
    position: fixed;
    z-index: 999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.gallery-popup.active {
    display: flex;
}

.gallery-popup-content {
    max-width: 90%;
    max-height: 90vh;
    text-align: center;
}

.gallery-popup-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 4px;
}

#galleryPopupCaption {
    color: #fff;
    font-size: 18px;
    margin-top: 12px;
}

.gallery-popup-close {
    position: absolute;
    top: 15px;
    right: 30px;
    color: #fff;
    font-size: 45px;
    font-weight: 300;
    cursor: pointer;
    z-index: 2;
}

.gallery-popup-close:hover {
    color: #ff6b00;
}

@media (max-width: 768px) {
    .gallery-popup {
        padding: 15px;
    }

    .gallery-popup-content {
        max-width: 100%;
    }

    .gallery-popup-content img {
        max-height: 75vh;
    }

    .gallery-popup-close {
        top: 8px;
        right: 18px;
    }
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
    padding: 1rem 0.75rem 0.5rem 0.75rem;
    font-size: 0.85rem;
    font-weight: 500;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-caption {
    opacity: 1;
}

/* Footer Section */
#colophon {
    background-color: var(--neutral-dark);
    color: #d1d5db;
    padding: 3rem 0;
    margin-top: auto;
    border-top: 4px solid var(--primary-light);
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #374151;
}

.footer-widget h4 {
    color: var(--white);
    font-size: 1.15rem;
    margin-bottom: 1rem;
    border-left: 3px solid var(--accent);
    padding-left: 0.5rem;
}

.footer-widget p, .footer-widget a {
    color: #9ca3af;
    font-size: 0.9rem;
}

.footer-widget a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 2rem;
    font-size: 0.85rem;
}

.copyright a {
    color: var(--white);
    font-weight: 600;
}

.powered-by a {
    color: #9ca3af;
}

.powered-by a span {
    font-weight: 700;
}

/* Scroll to top button */
#scroll-up {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 45px;
    height: 45px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    z-index: 99;
    transition: var(--transition);
}

#scroll-up:hover {
    background-color: var(--accent);
    transform: translateY(-3px);
}

/* Responsive Styles */
@media screen and (max-width: 960px) {
    #main .inner-wrap {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media screen and (max-width: 768px) {
    .main-head-wrap {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    #header-left-section {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .main-navigation {
        width: 100%;
        justify-content: center;
    }
    
    .menu {
        display: none;
        width: 100%;
    }
    
    .menu.active {
        display: block;
    }
    
    .menu ul {
        flex-direction: column;
        width: 100%;
        gap: 0.5rem;
        padding: 1rem 0;
        border-top: 1px solid var(--neutral-border);
    }
    
    .menu ul li {
        width: 100%;
        text-align: center;
    }
    
    .menu ul li a {
        display: block;
        padding: 0.5rem 0;
    }
    
    .menu ul li ul.children {
        position: static;
        box-shadow: none;
        border: none;
        background-color: var(--neutral-light);
        margin: 0.5rem 0;
    }
    
    .header-top-bar .inner-wrap {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .big-slider-wrapper {
        height: 250px;
    }
    
    .slider-entry-container h3.entry-title {
        font-size: 1.35rem;
    }
}