/* ============================================
   PREMIUM UI & ANIMATION SYSTEM
   Seaworld Shipping — Next-Gen Design
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-navy: #0A192F;
    --accent-teal: #00B4D8;
    --accent-blue: #0077B6;
    --accent-orange: #FF5722;
    --bg-light: #F8F9FA;
    --glass-white: rgba(255, 255, 255, 0.85);
    --glass-navy: rgba(10, 25, 47, 0.7);
    --text-dark: #1E293B;
    --text-muted: #64748B;
    --card-shadow: 0 15px 35px rgba(10, 25, 47, 0.05);
    --hover-shadow: 0 30px 60px rgba(10, 25, 47, 0.12);
    --glow-teal: 0 0 40px rgba(0, 180, 216, 0.25);
}

html {
    font-size: 110%; /* Increases base font size by 10% */
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
    font-size: 1.05rem; /* Slightly larger body text */
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--primary-navy);
    font-weight: 700;
}

/* ============================================
   SCROLL ANIMATION SYSTEM
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.animate-on-scroll.appear {
    opacity: 1;
    transform: translateY(0);
}
.animate-slide-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.animate-slide-left.appear {
    opacity: 1;
    transform: translateX(0);
}
.animate-slide-right {
    opacity: 0;
    transform: translateX(60px);
    transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.animate-slide-right.appear {
    opacity: 1;
    transform: translateX(0);
}
.animate-scale {
    opacity: 0;
    transform: scale(0.85);
    transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.animate-scale.appear {
    opacity: 1;
    transform: scale(1);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.6s; }
.delay-5 { transition-delay: 0.75s; }

/* ============================================
   FLOATING GLASSMORPHIC NAVBAR
   ============================================ */
.navbar-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.custom-navbar {
    background: var(--glass-white) !important;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 24px;
    box-shadow: var(--card-shadow);
    padding: 14px 32px !important;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar-wrapper.scrolled-wrapper {
    padding: 8px 0;
}
.navbar-wrapper.scrolled-wrapper .custom-navbar {
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(10, 25, 47, 0.12);
    background: rgba(255, 255, 255, 0.95) !important;
}

.navbar-brand img {
    height: 55px;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.navbar-brand img:hover {
    transform: scale(1.08) rotate(-2deg);
}

.navbar-nav .nav-link {
    font-weight: 700;
    color: var(--primary-navy) !important;
    margin: 0 14px;
    position: relative;
    padding: 8px 0 !important;
    transition: all 0.35s ease;
}
.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--accent-teal), var(--accent-blue));
    border-radius: 2px;
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--accent-teal) !important;
}

/* ============================================
   PREMIUM BUTTONS
   ============================================ */
.btn-premium {
    background: linear-gradient(135deg, var(--accent-teal) 0%, var(--accent-blue) 100%);
    color: white !important;
    border: none !important;
    border-radius: 30px;
    padding: 14px 34px;
    font-weight: 700;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 180, 216, 0.3);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-premium::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    z-index: -1;
    transition: left 0.6s ease;
}
.btn-premium:hover::before {
    left: 100%;
}
.btn-premium:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 12px 35px rgba(0, 180, 216, 0.5);
}
.btn-premium:active {
    transform: translateY(-1px) scale(0.98);
}

.btn-premium-outline {
    background: transparent;
    color: white !important;
    border: 2px solid rgba(255, 255, 255, 0.8) !important;
    border-radius: 30px;
    padding: 12px 30px;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}
.btn-premium-outline::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 0; height: 100%;
    background: white;
    z-index: -1;
    transition: width 0.4s ease;
}
.btn-premium-outline:hover::before {
    width: 100%;
}
.btn-premium-outline:hover {
    color: var(--primary-navy) !important;
    border-color: white !important;
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(255, 255, 255, 0.2);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    background: linear-gradient(rgba(10, 25, 47, 0.35), rgba(10, 25, 47, 0.6)), url('../images/hero-bg.png') center/cover no-repeat;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    padding-top: 100px;
    position: relative;
    overflow: hidden;
}

/* Floating particles background */
.hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image:
        radial-gradient(2px 2px at 20% 30%, rgba(255,255,255,0.15) 50%, transparent 50%),
        radial-gradient(2px 2px at 40% 70%, rgba(255,255,255,0.1) 50%, transparent 50%),
        radial-gradient(3px 3px at 60% 20%, rgba(0,180,216,0.15) 50%, transparent 50%),
        radial-gradient(2px 2px at 80% 50%, rgba(255,255,255,0.12) 50%, transparent 50%),
        radial-gradient(2px 2px at 10% 80%, rgba(0,119,182,0.1) 50%, transparent 50%),
        radial-gradient(3px 3px at 90% 90%, rgba(255,255,255,0.08) 50%, transparent 50%);
    background-size: 200px 200px;
    animation: floatParticles 25s linear infinite;
    pointer-events: none;
    z-index: 0;
}

.hero-glass-card {
    background: rgba(10, 25, 47, 0.55);
    backdrop-filter: blur(25px) saturate(150%);
    -webkit-backdrop-filter: blur(25px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 36px;
    padding: 70px 50px;
    max-width: 920px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.08);
    animation: heroCardIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 4.2rem;
    font-weight: 800 !important;
    color: #ffffff !important;
    line-height: 1.12;
    margin-bottom: 25px;
    letter-spacing: -1px;
    text-shadow: 0 4px 30px rgba(0,0,0,0.3);
    animation: textReveal 1s 0.3s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero p {
    font-size: 1.35rem;
    color: rgba(255, 255, 255, 0.92) !important;
    font-weight: 400 !important;
    margin-bottom: 40px;
    line-height: 1.65;
    animation: textReveal 1s 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* Sailing Ship Animation */
.sailing-ship-wrapper {
    position: absolute;
    bottom: 12%;
    width: 180px;
    height: auto;
    z-index: 1;
    animation: sailAcross 35s linear infinite;
    filter: drop-shadow(0 8px 20px rgba(0,0,0,0.3));
}
.sailing-ship {
    width: 100%;
    animation: shipBob 4s ease-in-out infinite;
}

/* Ocean Waves */
.hero-waves-container {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    z-index: 3;
}
.hero-waves {
    width: 100%;
    height: 80px;
}
.parallax-waves > use {
    animation: moveWaves 20s cubic-bezier(0.36, 0.45, 0.63, 0.53) infinite;
}
.parallax-waves > use:nth-child(1) {
    fill: rgba(255, 255, 255, 0.15);
    animation-delay: -2s;
    animation-duration: 8s;
}
.parallax-waves > use:nth-child(2) {
    fill: rgba(255, 255, 255, 0.10);
    animation-delay: -3s;
    animation-duration: 12s;
}
.parallax-waves > use:nth-child(3) {
    fill: rgba(255, 255, 255, 0.08);
    animation-delay: -4s;
    animation-duration: 16s;
}
.parallax-waves > use:nth-child(4) {
    fill: #ffffff;
    animation-delay: -5s;
    animation-duration: 22s;
}

/* ============================================
   STATS / COUNTER SECTION
   ============================================ */
.stats-section {
    background: linear-gradient(135deg, var(--primary-navy) 0%, #0d2647 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.stats-section::before {
    content: '';
    position: absolute;
    top: -50%; right: -20%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(0,180,216,0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.stat-item {
    text-align: center;
    padding: 30px 20px;
    position: relative;
}
.stat-item::after {
    content: '';
    position: absolute;
    right: 0; top: 20%;
    height: 60%; width: 1px;
    background: linear-gradient(180deg, transparent, rgba(0,180,216,0.3), transparent);
}
.stat-item:last-child::after { display: none; }
.stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-teal), #48CAE4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 10px;
}
.stat-label {
    color: #94A3B8;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */
.why-choose-card {
    background: white;
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(10, 25, 47, 0.03);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}
.why-choose-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--accent-teal), var(--accent-blue));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}
.why-choose-card:hover::before {
    transform: scaleX(1);
}
.why-choose-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--hover-shadow);
}
.why-choose-card .wc-icon {
    width: 80px; height: 80px;
    background: linear-gradient(135deg, rgba(0,180,216,0.08), rgba(0,119,182,0.08));
    border-radius: 24px;
    display: flex; align-items: center; justify-content: center;
    font-size: 32px;
    color: var(--accent-teal);
    margin: 0 auto 25px;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.why-choose-card:hover .wc-icon {
    background: linear-gradient(135deg, var(--accent-teal), var(--accent-blue));
    color: white;
    transform: scale(1.15) rotate(-8deg);
    box-shadow: 0 12px 25px rgba(0,180,216,0.3);
}

/* ============================================
   SERVICE CARDS
   ============================================ */
.icon-box-premium {
    width: 80px; height: 80px;
    background: linear-gradient(135deg, rgba(0,180,216,0.1), rgba(0,119,182,0.1));
    border-radius: 24px;
    color: var(--accent-teal);
    display: flex; align-items: center; justify-content: center;
    font-size: 32px;
    margin-bottom: 25px;
    border: 1px solid rgba(0,180,216,0.15);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.service-card:hover .icon-box-premium {
    background: linear-gradient(135deg, var(--accent-teal), var(--accent-blue));
    color: white;
    transform: scale(1.15) rotate(-8deg);
    box-shadow: 0 12px 25px rgba(0,180,216,0.3);
}

.service-card {
    border: none;
    border-radius: 28px;
    overflow: hidden;
    background: white;
    box-shadow: var(--card-shadow);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}
.service-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--accent-teal), var(--accent-blue), var(--accent-orange));
    transform: scaleX(0);
    transition: transform 0.5s ease;
}
.service-card:hover::after {
    transform: scaleX(1);
}
.service-card:hover {
    transform: translateY(-14px);
    box-shadow: var(--hover-shadow);
}
.service-card img {
    height: 280px;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.service-card:hover img {
    transform: scale(1.08);
}

/* ============================================
   PREMIUM BADGE
   ============================================ */
.premium-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(0,180,216,0.08), rgba(0,119,182,0.06));
    color: var(--accent-teal);
    font-weight: 700;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid rgba(0,180,216,0.15);
    margin-bottom: 20px;
    animation: badgePulse 3s ease-in-out infinite;
}

/* ============================================
   ENHANCED FOOTER
   ============================================ */
.footer {
    background: linear-gradient(180deg, #0A192F 0%, #040C18 100%);
    color: #E2E8F0;
    padding: 90px 0 45px;
    position: relative;
    overflow: hidden;
}
.footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--accent-teal), var(--accent-blue), var(--accent-orange), var(--accent-teal));
    background-size: 300% 100%;
    animation: gradientShift 4s linear infinite;
}
.footer::after {
    content: '';
    position: absolute;
    bottom: -100px; right: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(0,180,216,0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.footer h5 {
    color: #ffffff !important;
    font-weight: 700 !important;
    font-size: 1.35rem;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}
.footer h5::after {
    content: '';
    position: absolute;
    width: 45px; height: 4px;
    bottom: 0; left: 0;
    background: linear-gradient(90deg, var(--accent-teal), var(--accent-blue));
    border-radius: 2px;
    transition: width 0.4s ease;
}
.footer h5:hover::after {
    width: 80px;
}

.footer a {
    color: #94A3B8;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}
.footer a:hover {
    color: var(--accent-teal) !important;
    padding-left: 10px;
}

.footer p, .footer li {
    color: #94A3B8 !important;
    font-size: 0.98rem;
    line-height: 1.7;
}

.footer-social-link {
    width: 48px; height: 48px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    display: inline-flex;
    align-items: center; justify-content: center;
    color: #94A3B8;
    font-size: 18px;
    margin-right: 12px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.footer-social-link:hover {
    background: linear-gradient(135deg, var(--accent-teal), var(--accent-blue));
    color: white !important;
    transform: translateY(-6px) rotate(-5deg);
    box-shadow: 0 12px 25px rgba(0,180,216,0.3);
    border-color: transparent;
}

.newsletter-form {
    display: flex;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 30px;
    padding: 6px;
    margin-top: 20px;
    transition: all 0.3s ease;
}
.newsletter-form:focus-within {
    border-color: rgba(0,180,216,0.4);
    box-shadow: 0 0 20px rgba(0,180,216,0.1);
}
.newsletter-input {
    background: transparent;
    border: none;
    padding: 10px 20px;
    color: white;
    width: 100%;
    font-size: 0.9rem;
}
.newsletter-input::placeholder { color: #64748B; }
.newsletter-input:focus { outline: none; }
.newsletter-btn {
    background: linear-gradient(135deg, var(--accent-teal), var(--accent-blue));
    border: none;
    border-radius: 25px;
    width: 48px; height: 48px;
    display: flex; align-items: center; justify-content: center;
    color: white;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    flex-shrink: 0;
}
.newsletter-btn:hover {
    transform: scale(1.12) rotate(15deg);
    box-shadow: 0 8px 20px rgba(0,180,216,0.3);
}

/* ============================================
   WHATSAPP WIDGET
   ============================================ */
.whatsapp-widget {
    position: fixed;
    bottom: 30px; right: 30px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white !important;
    padding: 14px 26px;
    border-radius: 30px;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(37,211,102,0.4);
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    z-index: 999;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: pulseGlow 3s ease-in-out infinite;
}
.whatsapp-widget:hover {
    transform: translateY(-6px) scale(1.08);
    box-shadow: 0 18px 45px rgba(37,211,102,0.5);
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px; left: 30px;
    width: 50px; height: 50px;
    background: linear-gradient(135deg, var(--accent-teal), var(--accent-blue));
    color: white;
    border: none;
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 25px rgba(0,180,216,0.3);
}
.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
}
.back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 35px rgba(0,180,216,0.45);
}

/* ============================================
   KEYFRAMES
   ============================================ */
@keyframes heroCardIn {
    from { opacity: 0; transform: scale(0.92) translateY(40px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes textReveal {
    from { opacity: 0; transform: translateY(25px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes sailAcross {
    0% { left: -220px; }
    100% { left: calc(100% + 220px); }
}
@keyframes shipBob {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-6px) rotate(1.5deg); }
    50% { transform: translateY(0) rotate(0deg); }
    75% { transform: translateY(-4px) rotate(-1deg); }
}
@keyframes moveWaves {
    0% { transform: translate3d(-90px, 0, 0); }
    100% { transform: translate3d(85px, 0, 0); }
}
@keyframes floatParticles {
    from { transform: translateY(0) translateX(0); }
    to { transform: translateY(-100px) translateX(50px); }
}
@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0,180,216,0.15); }
    50% { box-shadow: 0 0 0 8px rgba(0,180,216,0); }
}
@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 10px 30px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 10px 50px rgba(37,211,102,0.6), 0 0 20px rgba(37,211,102,0.2); }
}
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    100% { background-position: 300% 50%; }
}
@keyframes countUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes ripple {
    0% { box-shadow: 0 0 0 0 rgba(0,180,216,0.2); }
    70% { box-shadow: 0 0 0 15px rgba(0,180,216,0); }
    100% { box-shadow: 0 0 0 0 rgba(0,180,216,0); }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
    .navbar-wrapper { padding: 10px 0; }
    .custom-navbar {
        border-radius: 16px;
        padding: 10px 20px !important;
    }
    .stat-item::after { display: none; }
    .stat-number { font-size: 2.5rem; }
}
@media (max-width: 768px) {
    .hero h1 { font-size: 2.6rem; }
    .hero-glass-card {
        padding: 35px 20px;
        margin: 0 15px;
        border-radius: 24px;
    }
    .stats-section { padding: 50px 0; }
    .stat-number { font-size: 2.2rem; }
}
@media (max-width: 576px) {
    .hero h1 { font-size: 2rem; letter-spacing: -0.5px; }
    .hero p { font-size: 1.05rem; }
    .sailing-ship-wrapper { width: 120px; bottom: 14%; }
}

/* ============================================
   HIGH-CONTRAST FOOTER OVERRIDES
   ============================================ */
footer.footer,
.footer,
.footer p,
.footer li,
.footer span,
.footer div,
.footer .text-muted,
.footer i {
    color: #F8F9FA !important;
}
.footer a {
    color: #00B4D8 !important;
}
.footer a:hover {
    color: #ffffff !important;
    text-decoration: none !important;
}
.footer h5 {
    color: #ffffff !important;
    font-weight: 700 !important;
}
