:root {
    --school-blue: #003366;
    --school-gold: #FFD700;
    --school-gold-hover: #ffc107;
    --school-gray: #f8f9fa;
    --text-dark: #333;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding-top: 0; 
}

html, body {
    overflow-x: hidden; 
    width: 100%;
    position: relative;
} 

#backToTop {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1050; 
    display: none; 
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--school-gold);
    color: var(--school-blue);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    border: none;
    transition: opacity 0.3s, transform 0.3s;
    opacity: 0.9;
}

#backToTop:hover {
    background-color: var(--school-gold-hover);
    color: var(--school-blue);
    opacity: 1;
    transform: translateY(-2px);
}

img {
    max-width: 100%;
    height: auto;
}

.text-blue { color: var(--school-blue) !important; }
.text-gold { color: var(--school-gold) !important; }
.bg-blue { background-color: var(--school-blue) !important; }
.bg-gold { background-color: var(--school-gold) !important; }
.ls-1 { letter-spacing: 1px; }
.object-fit-cover { object-fit: cover; }
.opacity-75 { opacity: 0.75; }
.opacity-50 { opacity: 0.50; }
.opacity-10 { opacity: 0.10; }
.border-gold { border: 3px solid var(--school-gold) !important; }

.section-padding {
    padding: 80px 0;
}

.main-nav {
    background-color: var(--school-blue);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: background-color 0.3s;
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255,255,255,0.85);
    font-weight: 500;
    font-size: 1.05rem;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link .active {
    color: var(--school-gold);
}

.navbar-brand .navbar-logo {
    height: 40px; 
    width: auto; 
    vertical-align: middle; 
    border-radius: 8px; 
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); 
    border: 1px solid var(--school-blue); 
}

.btn-gold {
    background-color: var(--school-gold);
    color: var(--school-blue);
    border-radius: 50px;
    padding: 10px 30px;
    transition: all 0.3s;
    border: 2px solid var(--school-gold);
}

.btn-gold:hover {
    background-color: white;
    color: var(--school-blue) !important; 
    border: 2px solid var(--school-gray);
    box-shadow: 0 2rem 3rem rgba(0,0,0,.1);
}

.navbar .btn-gold:hover {
    color: var(--school-gold);
}

.hero-wrapper {
    position: relative;
    height: 75vh; 
    min-height: 500px;
    overflow: hidden;
    background-color: #000; 
}

.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 51, 102, 0.7), rgba(0, 51, 102, 0.5));
    z-index: 1;
}

.hero-overlay {
    position: relative;
    z-index: 2; 
    height: 100%;
    width: 100%;
    align-items: center;
    text-align: center;
    color: white;
}

.text-shadow {
    text-shadow: 2px 2px 15px rgba(0,0,0,0.5);
}

.page-header {
    background: linear-gradient(rgba(0, 51, 102, 0.85), rgba(0, 51, 102, 0.7)), 
                url('images/campus/campus-view-2.jpg');
    background-size: cover;
    background-position: center;
    height: 40vh;
    min-height: 300px;
}

.child-nav-container {
    border-bottom: 1px solid #e9ecef;
    background-color: #ffffff !important;
    top: 76px;
    z-index: 1020;
    position: sticky;
    width: 100%;
}

#childNav {
    flex-wrap: wrap;
    white-space: normal;
    justify-content: center;
}

.nav-pills .nav-link.child-link {
    color: var(--school-blue);
    border-radius: 20px;
    margin: 4px 5px; 
    font-weight: 600;
    font-size: 0.95rem;
    justify-content: center;
}

.nav-pills .nav-link.child-link.active, 
.nav-pills .nav-link.child-link:hover {
    background-color: var(--school-blue);
    color: var(--school-gold);
}

.section-title {
    color: var(--school-blue);
    font-weight: 800;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 50%;
    height: 4px;
    background: var(--school-gold);
    margin-top: 10px;
    border-radius: 2px;
}

.stat-item {
    padding: 20px;
    transition: transform 0.3s;
}
.stat-item:hover {
    transform: translateY(-5px);
}

/* CARDS (Events, News, Clubs) */
.event-card, .news-card {
    transition: transform 0.3s, box-shadow 0.3s;
    border-radius: 20px;
}

.event-card:hover, .news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 3rem rgba(0,0,0,.1) !important;
}

.date-badge {
    background-color: var(--school-blue);
    color: var(--school-gold);
    width: 85px;
    height: 85px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.principal-badge {
    position: absolute;
    bottom: -40px;
    right: -20px;
    z-index: 10;
}

.principal-badge img {
    width: 160px;
    height: 160px;
    border: 6px solid white;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    background-color: #fff; 
}

@media (max-width: 991px) {
    .principal-badge {
        bottom: -25px;
        right: 10px;
    }
    .principal-badge img {
        width: 120px;
        height: 120px;
        border-width: 4px;
    }
}

.student-gallery-item {
    cursor: pointer;
}

.student-gallery-item img {
    transition: transform 0.5s ease;
}

.student-gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 51, 102, 0.85); 
    opacity: 0;
    transition: opacity 0.3s ease;
}

.student-gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* TESTIMONIALS */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 2rem;
    height: 2rem;
    background-size: 50%, 50%;
}

.rounded-circle{
    width: 30%;
    height: auto;
}

/* HISTORY TIMELINE */
.timeline-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline-container::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--school-blue);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: var(--school-gold);
    border: 4px solid #fff;
    top: 25px;
    border-radius: 50%;
    z-index: 1;
}

.left { left: 0; }
.right { left: 50%; }
.right::after { left: -10px; }

.timeline-item .content {
    position: relative;
    border-left: 4px solid var(--school-gold);
}

@media screen and (max-width: 768px) {
    .timeline-container::after { left: 31px; }
    .timeline-item { width: 100%; padding-left: 70px; padding-right: 25px; }
    .left, .right { left: 0; }
    .timeline-item::after { left: 21px; }
    .right::after { left: 21px; }
}

.hover-card {
    transition: all 0.3s ease;
    border-radius: 10px;
    border: 1px solid transparent;
    animation-duration: 0.5s;
}

.hover-card:hover {
    background-color: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: #eee;
    transform: translateY(-5px);
}

.hover-card:hover .icon-box {
    background-color: var(--school-gold) !important;
    color: var(--school-blue) !important;
    transform: scale(1.1);
    transition: all 0.3s;
}

.club-card {
    transition: all 0.3s ease;
}

.club-card:hover {
    background-color: var(--school-blue);
    transform: translateY(-5px);
    cursor: pointer;
}

.club-card:hover h5, 
.club-card:hover p, 
.club-card:hover i {
    color: white !important;
}

 /* SCHOOL ICON BACKGROUND PATTERN */
 body {
    background-color: #f8fafc;
    position: relative;
}
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.1; 
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill='%23003366'%3E%3Cpath d='M10 10h2v2h-2zM30 10h2v2h-2zM50 10h2v2h-2zM70 10h2v2h-2zM90 10h2v2h-2z'/%3E%3Ctext x='10' y='40' font-family='FontAwesome' font-size='12'%3E%26%23xf303;%3C/text%3E%3Ctext x='40' y='70' font-family='FontAwesome' font-size='12'%3E%26%23xf02d;%3C/text%3E%3Ctext x='70' y='30' font-family='FontAwesome' font-size='12'%3E%26%23xf0c3;%3C/text%3E%3Ctext x='20' y='90' font-family='FontAwesome' font-size='12'%3E%26%23xf19d;%3C/text%3E%3Ctext x='80' y='80' font-family='FontAwesome' font-size='12'%3E%26%23xf0b1;%3C/text%3E%3C/g%3E%3C/svg%3E");
    background-repeat: repeat;
}

.resource-img-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    height: 200px;
}
.resource-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.resource-img-container:hover img { transform: scale(1.1); }

.dancing-icon {
    position: absolute;
    z-index: 5;
    color: #f1c40f;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
    animation: dance 3s infinite ease-in-out alternate;
}
@keyframes dance {
    from { transform: translateY(0) rotate(-10deg); }
    to { transform: translateY(-15px) rotate(10deg); }
}
.icon-p1 { top: -10px; left: -10px; animation-delay: 0.2s; }
.icon-p2 { bottom: 10px; right: -5px; animation-delay: 0.5s; }
.icon-p3 { top: 20px; right: -10px; animation-delay: 0.8s; }

.publication-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    overflow: hidden;
}
.publication-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1) !important;
}
.student-portrait-side {
    width: 100%;
    height: 100%;
    min-height: 250px;
    object-fit: cover;
}
.quote-icon-watermark {
    position: absolute;
    bottom: 20px;
    right: 20px;
    color: #f1c40f;
    opacity: 0.1;
}

.footer {
    background-color: #001a33; /* Darker version of school blue */
    color: #ffffff;
    padding-top: 80px;
    padding-bottom: 20px;
}

.circle-logo {
    width: 30%;
    height: auto;
    border-radius: 50px;
    margin-bottom: 20px;
}

.footer-heading {
    color: var(--school-gold);
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    position: relative;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background-color: var(--school-gold);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--school-gold);
    transform: translateX(5px);
}

.contact-info {
    list-style: none;
    padding: 0;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.contact-info i {
    color: var(--school-gold);
    margin-right: 15px;
    margin-top: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--school-gold);
    color: var(--school-blue);
    transform: translateY(-5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 50px;
    padding-top: 25px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

#faq {
    position: relative;
    background-color: #f1f5f9;
    overflow: hidden;
}
#faq::after {
    content: "?";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: 100px;
    font-weight: 900;
    color: #003366;
    opacity: 0.03;
    pointer-events: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    line-height: 1;
    padding: 20px;
    word-break: break-all;
    text-align: center;
    content:"????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????";
}

section { scroll-margin-top: 120px; }

.step-card {
    border: none;
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    background: #fff;
}
.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08) !important;
}
.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 5rem;
    font-weight: 900;
    color: #04346433;
    line-height: 1;
}
.step-icon {
    width: 50px;
    height: 50px;
    background: #003366;
    color: #f1c40f;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.form-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    border: none;
    backdrop-filter: blur(10px);
}
        
.form-control, .form-select {
    padding: 0.8rem 1.2rem;
    border-radius: 10px;
    border: 1px solid #dee2e6;
}
    
.form-control:focus {
    border-color: #003366;
    box-shadow: 0 0 0 0.25rem rgba(0, 51, 102, 0.1);
}

.fee-card {
    transition: transform 0.3s ease;
    border-radius: 20px;
    border: 2px solid transparent;
}
        
.fee-card:hover {
    transform: scale(1.1);
}

#formMessage {
    display: none !important; 
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    min-width: 370px;
    background-color:  #65c59a !important;
    color: #d1e7dd;
}
        
#formMessage.show-flex {
    display: flex !important;
}

.download-box {
    background: linear-gradient(135deg, #003366, #004080);
    border-radius: 15px;
    padding: 2rem;
    color: white;
    margin-top: 2rem;
}


.about {
        padding: 5rem 0;
        background-color: white;
}

.about-content {
        display: flex;
        align-items: center;
        gap: 3rem;
}

.about-text {
    flex: 1;
    }

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.about-image img {
    width: 80%;
    height: auto;
    display: block;
}

.students-bg{
    background: linear-gradient(rgba(0, 51, 102, 0.85), rgba(0, 51, 102, 0.7)), 
                url('images/students/students-1.jpg');
    background-size: cover;
    background-position: center;
    width: 100%;}

.campus-view-bg{
    background: linear-gradient(rgba(0, 51, 102, 0.85), rgba(0, 51, 102, 0.7)), 
                url('images/campus/campus-view-1.jpg');
    background-size: cover;
    background-position: center;
    width: 100%;}

.students-in-class-bg{
    background: linear-gradient(rgba(0, 51, 102, 0.85), rgba(0, 51, 102, 0.7)), 
                url('images/students/students-in-class-2.jpg');
    background-size: cover;
    background-position: center;
    width: 100%;}

.students-happy-bg{
    background: linear-gradient(rgba(0, 51, 102, 0.85), rgba(0, 51, 102, 0.7)), 
                url('images/students/student-happy.jpg');
    background-size: cover;
    background-position: center;
    width: 100%;
}
.explore-img-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    height: 200px;
}
.explore-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.explore-img-container:hover img { transform: scale(1.1); }


/* Staff Directory Styling */
.staff-card {
    transition: all 0.3s ease;
    border-radius: 15px;
}

.staff-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15) !important;
}

.staff-img-wrapper {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.staff-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.staff-card .card-body {
    padding: 2rem 1.5rem;
}

#leadership h4 i {
    font-size: 1.3rem;
}

#leadership .mb-5:last-of-type {
    margin-bottom: 2rem !important;
}

.gallery-header {
    background-color: var(--school-blue);
    padding: 120px 0 80px;
    color: white;
    border-bottom: 5px solid var(--school-gold);
    position: relative;
    overflow: hidden;
}
        
.logo-box {
    background: white;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.header-logo-img {
    max-width: 100%;
    height: auto;
}

.gallery-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.video-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    z-index: 0;
}

.filter-container {
    margin-top: -30px;
    position: relative;
    z-index: 10;
}

.filter-pill-bg {
    display: inline-flex;
    background: white;
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    position: sticky;
}

.filter-btn {
    background: transparent;
    border: none;
    color: var(--school-blue);
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.4s ease;
}

.filter-btn.active {
    background: var(--school-blue);
    color: white;
    transform: scale(1.05);
}

.page-section {
    display: none; 
    animation: openPage 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    transform-origin: left center;
}

.page-section.active-section {
    display: block;
}

@keyframes openPage {
    0% { opacity: 0; transform: rotateY(-15deg) translateX(20px); }
    100% { opacity: 1; transform: rotateY(0deg) translateX(0); }
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    background: white;
    transition: transform 0.3s ease;
    margin-bottom: 30px;
    cursor: pointer;
}
        
.gallery-item:hover {
    transform: scale(1.1);
}

.gallery-media {
    position: relative;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    overflow: hidden;
}

.gallery-media img, .gallery-media iframe, .gallery-media video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-caption {
    padding: 15px;
    text-align: center;
}
        
.card-caption h5 {
    color: var(--school-blue);
    font-weight: 700;
    font-size: 1.1rem;
}

.card-caption p {
    color: #777;
    font-size: 0.9rem;
    margin: 0;
}

.section-header {
    border-left: 5px solid var(--school-gold);
    padding-left: 15px;
    margin-bottom: 30px;
    color: var(--school-blue);
}
        
.gallery-item:hover .gallery-media img {
    transform: scale(1.05);
    transition: transform 0.5s ease;
}

/* GALLERY SYSTEM */
.gallery-container {
    background-color: var(--school-gray);
}

/* THE STAGE */
.gallery-stage {
    position: relative;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    background: #000;
}

.gallery-stage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease;
}

.stage-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 51, 102, 0.8));
    color: white;
}

/* THE CHAIN */
.gallery-chain {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 500px; /* Shows roughly 5 items */
    overflow-y: auto;
    padding-right: 5px;
    scrollbar-width: thin;
}

.chain-item {
    cursor: pointer;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    height: 92px; /* Calculated for 5 visible items */
    opacity: 0.4; /* Faded when not viewed */
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.chain-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.chain-item.active {
    opacity: 1;
    border-color: var(--school-gold);
    transform: scale(0.98);
}

/* MOBILE RESPONSIVENESS */
@media (max-width: 991px) {
    .gallery-chain {
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
        max-height: none;
        padding-bottom: 10px;
    }
    
    .chain-item {
        width: 120px;
        height: 80px;
    }
    
    .gallery-stage {
        height: 350px;
    }
}

        .events {
            padding: 5rem 0;
            background-color: var(--light);
        }

        .events-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .event-video {
            position: relative;
            height: 200px;
            overflow: hidden;
        }

        .event-video video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 20px;
        }

        .event-info {
            padding: 1.5rem;
        }

        .event-info h3 {
            color: var(--school-blue);
            margin-bottom: 0.5rem;
        }

        .event-date {
            color: var(--accent);
            font-weight: 500;
            margin-bottom: 0.5rem;
        }

.join-us-badge {
    background: linear-gradient(rgba(0, 51, 102, 0.85), rgba(0, 51, 102, 0.7)), 
                url('images/campus/campus-view-2.jpg');
    background-size: cover;
    background-position: center;
    height: 40vh;
    min-height: 300px;
}