/* ═══════════════════════════════════════════════════════════
   HOMEPAGE STYLES — Assam School Website (Complete Redesign)
   ═══════════════════════════════════════════════════════════ */

/* ── GLOBAL ── */
* { box-sizing: border-box; font-family: 'Inter', sans-serif; }
html { scroll-behavior: smooth; scroll-padding-top: 160px; }
.sec-heading {
    font-weight: 800; margin-bottom: 10px; position: relative;
    padding-bottom: 14px; font-size: 1.8rem; color: #1a1a2e;
}
.sec-heading::after {
    content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
    width: 60px; height: 4px; background: linear-gradient(90deg, #8b0000, #ff6f00); border-radius: 4px;
}
.sec-sub { color: #666; font-size: 1rem; margin-bottom: 40px; }
.btn-maroon { background: #8b0000; color: #fff; border: none; padding: 10px 24px; border-radius: 8px; font-weight: 600; transition: all 0.3s; }
.btn-maroon:hover { background: #6b0000; color: #fff; transform: translateY(-2px); box-shadow: 0 5px 15px rgba(139,0,0,0.3); }
.btn-outline-maroon { border: 2px solid #8b0000; color: #8b0000; padding: 8px 22px; border-radius: 8px; font-weight: 600; transition: all 0.3s; background: transparent; }
.btn-outline-maroon:hover { background: #8b0000; color: #fff; }

/* ═══════════════════════════════════════
   HERO BANNER — 2-Column (Carousel + Achievements)
   ═══════════════════════════════════════ */
.hero-section { position: relative; overflow: hidden; }
.hero-section .carousel-item img { height: 480px; object-fit: cover; }
.hero-overlay {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(26,26,46,0.72) 0%, rgba(15,52,96,0.50) 50%, rgba(0,0,0,0.25) 100%);
    z-index: 1;
}
.hero-section .carousel-caption {
    z-index: 2; bottom: 0; top: 0; left: 0; right: 0;
    display: flex; flex-direction: column; align-items: flex-start; justify-content: center;
    padding: 60px 8%; text-align: left;
}
.hero-tag {
    display: inline-block; background: #ff6f00; color: #fff; padding: 8px 22px;
    border-radius: 50px; font-weight: 700; font-size: 0.85rem; margin-bottom: 16px;
    animation: tag-glow 2s ease-in-out infinite; letter-spacing: 0.5px;
}
@keyframes tag-glow { 0%,100%{box-shadow:0 0 8px rgba(255,111,0,0.4)}50%{box-shadow:0 0 22px rgba(255,111,0,0.8)} }
.hero-section .carousel-caption h1 {
    font-size: 2.4rem; font-weight: 800; color: #fff; line-height: 1.15;
    text-shadow: 2px 3px 10px rgba(0,0,0,0.4); margin-bottom: 12px; max-width: 700px;
}
.hero-sub { font-size: 1.05rem; color: rgba(255,255,255,0.9); text-shadow: 1px 1px 4px rgba(0,0,0,0.4); max-width: 600px; line-height: 1.6; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 20px; }
.btn-hero-primary {
    background: linear-gradient(135deg,#ff6f00,#ff8f00); color: #fff; border: none;
    padding: 12px 28px; border-radius: 50px; font-weight: 700; font-size: 0.9rem;
    box-shadow: 0 4px 18px rgba(255,111,0,0.4); transition: all 0.3s;
}
.btn-hero-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(255,111,0,0.5); color: #fff; }
.btn-hero-outline {
    background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.7);
    padding: 11px 24px; border-radius: 50px; font-weight: 600; font-size: 0.9rem; transition: all 0.3s;
}
.btn-hero-outline:hover { background: rgba(255,255,255,0.15); border-color: #fff; color: #fff; transform: translateY(-3px); }
.hero-section .carousel-indicators { z-index: 3; margin-bottom: 22px; }
.hero-section .carousel-indicators button {
    width: 12px; height: 12px; border-radius: 50%; opacity: 0.5;
    border: 2px solid #fff; background: transparent; transition: all 0.3s;
}
.hero-section .carousel-indicators button.active { opacity: 1; background: #ff6f00; border-color: #ff6f00; width: 34px; border-radius: 6px; }
.hero-section .carousel-control-prev,
.hero-section .carousel-control-next { z-index: 3; width: 50px; }
.hero-fallback {
    position: relative; background: linear-gradient(135deg,#1a1a2e 0%,#16213e 50%,#0f3460 100%);
    color: #fff; height: 480px; display: flex; align-items: center; justify-content: center; text-align: center;
}
.hero-fallback-inner { position: relative; z-index: 2; padding: 40px; }
.hero-fallback h1 { font-size: 2.4rem; font-weight: 800; }

/* ── Achievements Sidebar (right panel) ── */
.achievements-sidebar {
    height: 480px; display: flex; flex-direction: column;
    background: linear-gradient(180deg, #1a237e 0%, #283593 100%);
    border-left: 3px solid #ff6f00;
}
.achievements-sidebar-header {
    padding: 14px 18px; font-size: 1rem; font-weight: 700; color: #fff;
    background: linear-gradient(135deg, #ff6f00, #ff8f00);
    text-align: center; letter-spacing: 0.3px; flex-shrink: 0;
}
.achievements-marquee-wrap {
    flex: 1; overflow: hidden; position: relative;
}
.achievements-marquee {
    display: flex; flex-direction: column;
    animation: ach-scroll-up 20s linear infinite;
}
.achievements-marquee:hover { animation-play-state: paused; }
@keyframes ach-scroll-up {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}
.ach-marquee-item {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 14px 16px; border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: background 0.2s;
}
.ach-marquee-item:hover { background: rgba(255,255,255,0.06); }
.ach-marquee-icon {
    width: 36px; height: 36px; border-radius: 8px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 0.85rem;
}
.ach-marquee-text { flex: 1; min-width: 0; }
.ach-marquee-text strong {
    display: block; color: #fff; font-size: 0.85rem; font-weight: 600;
    line-height: 1.3; margin-bottom: 2px;
}
.ach-marquee-text p {
    margin: 0; font-size: 0.75rem; color: rgba(255,255,255,0.6);
    line-height: 1.3; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.ach-marquee-cat {
    font-size: 0.65rem; color: rgba(255,255,255,0.4); font-weight: 500;
}

@media (max-width: 767.98px) {
    .hero-section .carousel-item img, .hero-fallback, .achievements-sidebar { height: 320px; }
    .achievements-sidebar { border-left: none; border-top: 3px solid #ff6f00; }
    .hero-section .carousel-caption h1 { font-size: 1.5rem; }
    .hero-section .carousel-caption { padding: 30px 5%; }
}

/* ═══════════════════════════════════════
   NOTIFICATION TICKER BAR
   ═══════════════════════════════════════ */
.ticker-bar {
    display: flex; align-items: stretch; background: #fff;
    border-bottom: 2px solid #eee; overflow: hidden; height: 46px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.ticker-label {
    background: linear-gradient(135deg,#8b0000,#b30000); color: #fff;
    display: flex; align-items: center; gap: 8px; padding: 0 20px;
    font-weight: 700; font-size: 0.85rem; white-space: nowrap; flex-shrink: 0;
    position: relative; z-index: 2;
}
.ticker-label i { animation: bell-ring 1.5s ease-in-out infinite; }
@keyframes bell-ring { 0%,100%{transform:rotate(0)}15%{transform:rotate(14deg)}30%{transform:rotate(-12deg)}45%{transform:rotate(8deg)}60%{transform:rotate(0)} }
.ticker-label::after {
    content: ''; position: absolute; right: -12px; top: 0; bottom: 0;
    border-left: 12px solid #b30000; border-top: 23px solid transparent; border-bottom: 23px solid transparent;
}
.ticker-track { flex: 1; overflow: hidden; display: flex; align-items: center; padding-left: 16px; }
.ticker-scroll {
    display: flex; align-items: center; white-space: nowrap;
    animation: ticker-slide 35s linear infinite;
}
.ticker-scroll:hover { animation-play-state: paused; }
@keyframes ticker-slide { 0%{transform:translateX(0)}100%{transform:translateX(-50%)} }
.ticker-item {
    display: inline-flex; align-items: center; gap: 8px; padding: 6px 22px 6px 12px;
    text-decoration: none; color: #333; font-size: 0.86rem; font-weight: 600;
    border-right: 1px solid #eee; transition: color 0.2s; flex-shrink: 0;
}
.ticker-item:hover { color: #8b0000; }
.tbadge { font-size: 0.6rem; font-weight: 700; padding: 3px 10px; border-radius: 50px; text-transform: uppercase; letter-spacing: 0.5px; }
.tbadge-news { background: #e3f2fd; color: #1565c0; }
.tbadge-notice { background: #fce4ec; color: #c62828; }
.ticker-date { font-size: 0.7rem; color: #999; font-weight: 600; }

/* ═══════════════════════════════════════
   STATS COUNTER
   ═══════════════════════════════════════ */
.stats-bar { background: linear-gradient(135deg,#8b0000,#b30000); padding: 36px 0; color: #fff; }
.stat-box { text-align: center; padding: 18px; }
.stat-box i { font-size: 2rem; margin-bottom: 8px; opacity: 0.7; }
.stat-box h2 { font-weight: 800; font-size: 2.4rem; margin: 0; }
.stat-box p { margin: 0; font-size: 0.9rem; opacity: 0.85; }

/* ═══════════════════════════════════════
   SECTION 4 — ABOUT
   ═══════════════════════════════════════ */
.sec-about { background: #fff; }
.about-card {
    background: #f8f9fa; border-radius: 15px; padding: 28px; height: 100%;
    border-left: 4px solid #8b0000; transition: transform 0.3s, box-shadow 0.3s;
}
.about-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.about-card i { color: #8b0000; }
.about-card h5 { font-weight: 700; color: #8b0000; margin-bottom: 12px; }
.about-card p { color: #555; font-size: 0.92rem; line-height: 1.7; }
.person-photo { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; border: 3px solid #8b0000; margin-bottom: 10px; }
.person-ph { width: 80px; height: 80px; border-radius: 50%; background: linear-gradient(135deg,#8b0000,#b30000); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.8rem; margin-bottom: 10px; }

/* ═══════════════════════════════════════
   SECTION 5 — ACADEMICS
   ═══════════════════════════════════════ */
.sec-academics { background: #f8f9fa; }
.class-card {
    background: #fff; border-radius: 12px; padding: 20px; text-align: center;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06); transition: transform 0.3s, box-shadow 0.3s;
    border-top: 3px solid #8b0000;
}
.class-card:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(0,0,0,0.12); }
.class-card i { font-size: 2rem; color: #8b0000; margin-bottom: 10px; }
.class-card h6 { font-weight: 700; color: #333; margin: 0; }
.stream-badge {
    display: inline-block; background: linear-gradient(135deg,#667eea,#764ba2); color: #fff;
    padding: 12px 28px; border-radius: 50px; font-weight: 700; font-size: 1rem; margin: 5px; transition: transform 0.3s;
}
.stream-badge:hover { transform: scale(1.05); }

/* ═══════════════════════════════════════
   SECTION 6 — ADMISSION
   ═══════════════════════════════════════ */
.sec-admission {
    background: linear-gradient(135deg,#1a1a2e 0%,#0f3460 100%); color: #fff;
    position: relative; overflow: hidden;
}
.sec-admission::before {
    content: ''; position: absolute; top: -50%; right: -20%; width: 500px; height: 500px;
    background: rgba(255,255,255,0.03); border-radius: 50%;
}
.adm-badge {
    display: inline-block; background: #ff6f00; color: #fff; padding: 8px 20px;
    border-radius: 50px; font-weight: 700; font-size: 0.85rem; margin-bottom: 15px;
    animation: tag-glow 2s infinite;
}

/* ═══════════════════════════════════════
   SECTION 7 — FACILITIES
   ═══════════════════════════════════════ */
.sec-facilities { background: #fff; }
.facility-card {
    text-align: center; padding: 28px 18px; background: #f8f9fa; border-radius: 15px;
    transition: all 0.3s; height: 100%;
}
.facility-card:hover { background: #8b0000; color: #fff; transform: translateY(-8px); box-shadow: 0 15px 30px rgba(139,0,0,0.2); }
.facility-card:hover i, .facility-card:hover h6, .facility-card:hover p { color: #fff !important; }
.facility-card i { font-size: 2.5rem; color: #8b0000; margin-bottom: 15px; display: block; }
.facility-card h6 { font-weight: 700; color: #333; }
.facility-card p { font-size: 0.82rem; color: #777; margin: 0; }

/* ═══════════════════════════════════════
   SECTION 8 — HOSTEL
   ═══════════════════════════════════════ */
.sec-hostel { background: #f8f9fa; }
.hostel-card {
    background: #fff; border-radius: 15px; padding: 24px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.06); height: 100%; transition: transform 0.3s;
}
.hostel-card:hover { transform: translateY(-5px); }
.hicon { width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 15px; }

/* ═══════════════════════════════════════
   SECTION 9 — TRANSPORT
   ═══════════════════════════════════════ */
.sec-transport { background: #fff; }
.route-card {
    background: #f8f9fa; border-radius: 12px; padding: 18px;
    border-left: 4px solid #ff6f00; margin-bottom: 12px; transition: transform 0.3s;
}
.route-card:hover { transform: translateX(5px); }
.transport-feat { text-align: center; padding: 18px; }
.transport-feat i { font-size: 2rem; color: #ff6f00; margin-bottom: 10px; display: block; }
.transport-feat h6 { font-weight: 700; font-size: 0.88rem; }
.transport-feat p { font-size: 0.78rem; color: #777; margin: 0; }

/* ═══════════════════════════════════════
   SECTION 10 — STAFF
   ═══════════════════════════════════════ */
.sec-staff { background: #f8f9fa; }
.staff-card {
    background: #fff; border-radius: 15px; overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.06); transition: transform 0.3s; text-align: center;
}
.staff-card:hover { transform: translateY(-5px); }
.staff-photo { width: 100%; height: 200px; object-fit: cover; }
.staff-ph {
    width: 100%; height: 200px; background: linear-gradient(135deg,#667eea,#764ba2);
    display: flex; align-items: center; justify-content: center; color: #fff; font-size: 3rem; font-weight: 700;
}
.staff-info { padding: 14px; }
.sname { font-weight: 700; color: #333; font-size: 0.95rem; }
.sdesig { font-size: 0.8rem; color: #8b0000; font-weight: 600; }
.squal { font-size: 0.75rem; color: #777; }

/* ═══════════════════════════════════════
   SECTION 11 — NOTICE BOARD
   ═══════════════════════════════════════ */
.sec-notices { background: #fff; }
.notice-card {
    background: #f8f9fa; border-radius: 12px; padding: 16px 20px; margin-bottom: 12px;
    border-left: 4px solid #8b0000; transition: transform 0.3s, box-shadow 0.3s;
}
.notice-card:hover { transform: translateX(5px); box-shadow: 0 5px 15px rgba(0,0,0,0.08); }
.ndate { font-size: 0.75rem; color: #999; font-weight: 600; }
.ntitle { font-weight: 700; color: #333; font-size: 0.92rem; }
.ndesc { font-size: 0.82rem; color: #666; margin-top: 4px; }

/* ═══════════════════════════════════════
   SECTION 12 — GALLERY
   ═══════════════════════════════════════ */
.sec-gallery { background: #f8f9fa; }
.gallery-card { border-radius: 12px; overflow: hidden; position: relative; height: 220px; cursor: pointer; }
.gallery-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery-card:hover img { transform: scale(1.1); }
.gallery-ov {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8)); color: #fff;
    padding: 15px; transform: translateY(100%); transition: transform 0.3s;
}
.gallery-card:hover .gallery-ov { transform: translateY(0); }
.gallery-ov h6 { font-weight: 700; font-size: 0.85rem; margin: 0; }
.gallery-ov small { opacity: 0.8; }

/* ═══════════════════════════════════════
   SECTION 13 — RESULTS
   ═══════════════════════════════════════ */
.sec-results { background: #fff; }
.result-card {
    background: linear-gradient(135deg,#f8f9fa,#fff); border-radius: 15px; padding: 24px;
    text-align: center; border: 1px solid #eee; transition: all 0.3s; height: 100%;
}
.result-card:hover { border-color: #8b0000; box-shadow: 0 5px 20px rgba(139,0,0,0.1); }
.result-card i { font-size: 2.5rem; color: #8b0000; margin-bottom: 10px; }
.result-card h6 { font-weight: 700; }
.result-card p { font-size: 0.82rem; color: #777; margin: 0 0 8px; }

/* ═══════════════════════════════════════
   SECTION 14 — DOWNLOADS
   ═══════════════════════════════════════ */
.sec-downloads { background: #f8f9fa; }
.dl-item {
    background: #fff; border-radius: 10px; padding: 14px 20px;
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 10px; box-shadow: 0 2px 8px rgba(0,0,0,0.04); transition: transform 0.3s;
}
.dl-item:hover { transform: translateX(5px); }
.dl-item i { font-size: 1.3rem; color: #8b0000; margin-right: 12px; }

/* ═══════════════════════════════════════
   SECTION 15 — LOGIN
   ═══════════════════════════════════════ */
.sec-login { background: linear-gradient(135deg,#16213e,#0f3460); color: #fff; }
.login-card {
    background: rgba(255,255,255,0.1); backdrop-filter: blur(10px); border-radius: 15px;
    padding: 28px; text-align: center; transition: all 0.3s;
    border: 1px solid rgba(255,255,255,0.15); height: 100%;
}
.login-card:hover { background: rgba(255,255,255,0.18); transform: translateY(-5px); }
.login-card i { font-size: 2.5rem; margin-bottom: 12px; }
.login-card h5 { font-weight: 700; }
.login-card p { font-size: 0.82rem; opacity: 0.75; }
.login-card a { color: #ffc107; font-weight: 600; text-decoration: none; }
.login-card a:hover { color: #fff; text-decoration: underline; }

/* ═══════════════════════════════════════
   SECTION 16 — DISCLOSURE
   ═══════════════════════════════════════ */
.sec-disclosure { background: #fff; }
.disc-card {
    background: #f8f9fa; border-radius: 12px; padding: 20px; text-align: center;
    height: 100%; transition: all 0.3s; border: 1px solid #eee;
}
.disc-card:hover { border-color: #8b0000; box-shadow: 0 5px 15px rgba(0,0,0,0.08); transform: translateY(-3px); }
.disc-card i { font-size: 2rem; color: #8b0000; margin-bottom: 10px; display: block; }
.disc-card h6 { font-weight: 700; font-size: 0.9rem; }

/* ═══════════════════════════════════════
   SECTION 17 — DISE INFO
   ═══════════════════════════════════════ */
.sec-dise { background: #f8f9fa; }
.dise-card {
    background: #fff; border-radius: 15px; padding: 24px; text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.06);
}
.dise-card i { font-size: 2rem; color: #ff6f00; margin-bottom: 10px; }
.dise-card h6 { font-size: 0.8rem; color: #777; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 5px; }
.dise-card h4 { font-weight: 800; color: #333; margin: 0; }

/* ═══════════════════════════════════════
   SECTION 18 — FOOTER
   ═══════════════════════════════════════ */
.site-footer { background: #1a1a2e; color: #fff; padding: 50px 0 0; }
.site-footer h5 { font-weight: 700; margin-bottom: 18px; font-size: 1.1rem; position: relative; padding-bottom: 10px; }
.site-footer h5::after { content: ''; position: absolute; bottom: 0; left: 0; width: 40px; height: 3px; background: #8b0000; border-radius: 3px; }
.site-footer p, .site-footer li, .site-footer a { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.site-footer a:hover { color: #ffc107; text-decoration: none; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { padding: 4px 0; }
.footer-links li::before { content: '\f105'; font-family: 'Font Awesome 6 Free'; font-weight: 900; margin-right: 8px; color: #8b0000; }
.fci { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.fci i { color: #8b0000; margin-top: 3px; }
.footer-map iframe { width: 100%; height: 200px; border-radius: 10px; border: none; }
.footer-bottom { background: rgba(0,0,0,0.3); padding: 15px 0; margin-top: 40px; text-align: center; }
.footer-bottom p { margin: 0; font-size: 0.85rem; opacity: 0.7; }

/* ═══════════════════════════════════════
   ACHIEVEMENTS SECTION
   ═══════════════════════════════════════ */
.achievement-card {
    background: #fff; border-radius: 12px; padding: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08); transition: all 0.3s;
    height: 100%; display: flex; flex-direction: column;
    border: 1px solid #f0f0f0; position: relative; overflow: hidden;
}
.achievement-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, #8b0000, #ff6f00);
}
.achievement-card:hover {
    transform: translateY(-5px); box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}
.achievement-icon {
    width: 60px; height: 60px; border-radius: 50%;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px; font-size: 1.4rem; color: #8b0000;
}
.achievement-content h5 {
    font-size: 1.1rem; font-weight: 700; margin-bottom: 10px;
    color: #1a1a2e; line-height: 1.3;
}
.achievement-content p {
    font-size: 0.9rem; color: #666; margin-bottom: 12px;
    line-height: 1.5; flex: 1;
}
.achievement-meta {
    display: flex; align-items: center; gap: 10px;
    margin-top: auto;
}
.achievement-meta .badge {
    font-size: 0.7rem; padding: 4px 10px; border-radius: 20px;
}
.achievement-meta small {
    font-size: 0.75rem; color: #999;
}

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media(max-width:991px) {
    .hero-section .carousel-item img, .hero-fallback, .achievements-sidebar { height: 380px !important; }
    .hero-section .carousel-caption { padding: 30px 5%; }
    .hero-section .carousel-caption h1 { font-size: 1.7rem; }
    .hero-sub { font-size: 0.95rem; }
    .btn-hero-primary, .btn-hero-outline { padding: 10px 22px; font-size: 0.85rem; }
    .ticker-label span { display: none; }
    .ticker-label { padding: 0 14px; }
}
@media(max-width:575px) {
    .hero-section .carousel-item img, .hero-fallback, .achievements-sidebar { height: 300px !important; }
    .hero-section .carousel-caption h1 { font-size: 1.3rem; }
    .hero-tag { font-size: 0.72rem; padding: 6px 14px; }
    .sec-heading { font-size: 1.4rem; }
}
