/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Body Styling */
body {
    background-color: #f4faff;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

/* --- Unified Sidebar (Desktop First) --- */
.side-bar {
    width: 280px; /* Desktop width */
    background: linear-gradient(180deg, #002366 0%, #001a4d 100%);
    color: white;
    height: 100vh;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: fixed; /* Fixed position */
    top: 0;
    left: 0;
    box-shadow: 4px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1001; /* Above overlay */
    transition: transform 0.3s ease-out; /* Transition for mobile */
    overflow-y: auto; /* Allow sidebar scrolling if content overflows */
}

.logo-name {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 25px; /* More space */
    text-align: center;
    width: 100%;
}

.logo {
    width: 180px; /* Adjusted size */
    height: auto;
    margin-bottom: 15px;
    opacity: 0.9; /* Slightly less transparent */
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

.animated-text {
    font-size: 1.1rem; /* Adjusted size */
    margin: 10px 0 5px 0; /* Adjusted margin */
    color: #ffffff;
    font-weight: 600;
}

.animated-subtext {
    font-size: 0.85rem; /* Adjusted size */
    color: rgba(255,255,255,0.8);
    margin-bottom: 15px;
}

.side-bar ul {
    list-style: none;
    width: 100%; /* Full width */
    padding: 0 10px; /* Add padding */
    margin: 0;
    flex-grow: 1; /* Allow list to take remaining space */
}

.side-bar ul li {
    margin: 10px 0; /* Adjusted margin */
}

.nav-item { /* Unified class for sidebar links */
    text-decoration: none;
    color: rgba(255, 255, 255, 0.85); /* Brighter text */
    font-weight: 500;
    padding: 12px 18px; /* Adjusted padding */
    display: flex;
    align-items: center;
    text-align: left;
    border-radius: 8px; /* Smoother radius */
    background: transparent; /* Transparent background */
    border: 1px solid transparent; /* Placeholder for transition */
    transition: all 0.25s ease-out;
    position: relative;
    overflow: hidden;
}

.nav-item i {
    margin-right: 15px; /* More space */
    font-size: 1.1em;
    min-width: 25px;
    text-align: center;
    transition: transform 0.3s ease;
    color: rgba(255, 255, 255, 0.85);
}

.nav-item .nav-text {
    color: inherit; /* Inherit color from <a> */
    transition: color 0.25s ease-out;
}

.nav-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: #ffffff; /* Full white on hover */
    transform: translateX(5px); /* Subtle move */
}

.nav-item:hover i {
    transform: scale(1.1);
}

.nav-item.active {
    background: #0054a6; /* Solid active background */
    color: #ffffff;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.nav-item.active i {
    color: #ffffff;
}

/* Ripple Effect (Optional but kept from original) */
.ripple:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.5s ease-out, opacity 0.5s ease-out;
    opacity: 1;
    pointer-events: none;
}
.ripple:active:before {
    transform: translate(-50%, -50%) scale(100);
    opacity: 0;
    transition: 0s;
}

/* Sidebar Bottom Links (Desktop) */
.sidebar-bottom-links {
    margin-top: auto; /* Push to bottom */
    padding: 15px 10px 10px 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
}
.bottom-nav-item {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.2s ease;
    font-size: 0.9rem;
}
.bottom-nav-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
}
.bottom-nav-item i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

/* --- Mobile Menu Specific --- */
.mobile-menu-icon {
    display: none; /* Hidden by default, shown in media query */
    background: rgba(0, 84, 166, 0.8); /* Make button background blue */
    border: none;
    color: white; /* Icon color */
    font-size: 22px; /* Slightly smaller icon */
    padding: 0; /* Remove padding, use width/height */
    cursor: pointer;
    position: fixed;
    top: 10px; /* Adjust position */
    left: 10px;
    z-index: 1002; /* Above sidebar and overlay */
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    width: 44px; /* Touch target size */
    height: 44px;
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* Style when menu is active/open */
.mobile-menu-icon.active {
    background-color: rgba(255, 255, 255, 0.9); /* White background */
    color: #0054a6; /* Blue icon */
    /* Optional: Add rotation or change icon via JS if needed */
    /* transform: rotate(90deg); */
}

.mobile-menu-icon:hover {
    /* Keep hover effect subtle or match active state */
    background-color: rgba(0, 84, 166, 1);
}
.mobile-menu-icon.active:hover {
     background-color: rgba(255, 255, 255, 1);
}


.nav-overlay {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    z-index: 1000; /* Below sidebar, above content */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-out, visibility 0s 0.3s linear;
}
.nav-overlay.show {
    display: block;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease-out, visibility 0s 0s linear;
}


/* --- Main Content --- */
.main-content {
    width: calc(100% - 280px); /* Desktop width */
    margin-left: 280px; /* Desktop margin */
    padding: 40px 50px; /* More padding */
    text-align: center;
    min-height: 100vh; /* Ensure it takes full height */
    transition: margin-left 0.3s ease-out, width 0.3s ease-out; /* Smooth transition */
}

/* Point 1 Fix: Enlarge Welcome Message */
.welcome-message {
    font-size: 2.6rem; /* Increased font size */
    color: #002366;
    margin-bottom: 15px;
    font-weight: 600;
}
.section-title { /* Keep section titles consistent */
    font-size: 2.2rem;
    color: #002366;
    margin-bottom: 15px;
    font-weight: 600;
}
.welcome-subtext {
    font-size: 1.1rem; /* Adjusted size */
    color: #0054a6;
    margin-bottom: 40px; /* More space */
    max-width: 700px; /* Limit width */
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* --- Carousel Styling --- */
.carousel {
    width: 100%;
    max-width: 800px; /* Wider carousel */
    margin: 30px auto 50px auto; /* Adjusted margin */
    position: relative;
    overflow: hidden; /* Hide overflowing slides */
    border-radius: 12px; /* Smooth edges */
    box-shadow: 0 5px 15px rgba(0, 35, 102, 0.1);
}

.carousel-container {
    display: flex; /* Use flexbox for slides */
    width: 100%; /* Ensure container takes width */
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1); /* Smoother transition */
}

.carousel-container img {
    flex: 0 0 100%; /* Each slide takes full width */
    width: 100%;
    height: 400px; /* Adjusted height */
    object-fit: cover;
    display: block; /* Remove potential space below image */
}

.carousel-buttons {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 15px; /* Padding from edges */
    z-index: 10;
}

.carousel-buttons button {
    background-color: rgba(0, 0, 0, 0.4);
    color: white;
    border: none;
    padding: 0; /* Remove padding, use width/height */
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border-radius: 50%; /* Circular buttons */
    width: 44px; /* Touch target size */
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem; /* Larger arrows */
    line-height: 1;
}

.carousel-buttons button:hover {
    background-color: rgba(0, 0, 0, 0.7);
    transform: scale(1.1);
}
.carousel-buttons button:active {
    transform: scale(0.95);
}

/* Carousel Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}
.carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}
.carousel-indicators button:hover {
    background-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}
.carousel-indicators button.active {
    background-color: #ffffff;
}


/* Action Section (Buttons below welcome) */
.action-section {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px auto;
    max-width: 800px; /* Wider */
    flex-wrap: wrap; /* Allow wrapping */
}

.contact-us-container, .join-us-container, .social-media-container {
    flex: 1 1 auto; /* Allow grow/shrink */
    min-width: 150px; /* Minimum width */
}

.additional-links a {
    display: block; /* Make buttons take full width of container */
    padding: 12px 20px; /* Adjust padding */
    text-align: center;
    background: #0054a6; /* Button background */
    color: white;
    border: none; /* Remove border */
    border-radius: 8px; /* Consistent radius */
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 35, 102, 0.2);
    cursor: pointer; /* Ensure cursor indicates clickability */
}

.additional-links a:hover {
    background-color: #003366; /* Darker hover */
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 35, 102, 0.3);
}


/* --- Basic Info / Gears Section --- */
.basic-info-section {
    background: #ffffff; /* White background */
    padding: 60px 0; /* Adjusted padding */
    text-align: center;
    border-radius: 12px;
    margin-top: 50px;
    box-shadow: 0 5px 20px rgba(0, 35, 102, 0.08);
}

.basic-info-section .container {
    max-width: 1100px; /* Adjusted width */
    margin: 0 auto;
    padding: 0 20px;
}

.basic-info-section .section-title {
     margin-bottom: 40px; /* More space below title */
}

.info-categories {
    display: grid; /* Use grid for categories */
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Responsive columns */
    gap: 25px; /* Gap between categories */
    align-items: stretch; /* Make items same height if needed */
}

.info-category { /* Styling for the clickable category trigger */
    background: #f0f8ff; /* Light blue background */
    border: 1px solid #cce4ff; /* Light border */
    border-radius: 10px;
    padding: 25px 20px; /* More padding */
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    display: flex; /* Center content */
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.info-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 84, 166, 0.15);
    border-color: #a8d3ff;
}

.info-category h3 {
    color: #003366; /* Darker blue */
    font-size: 1.3rem; /* Adjusted size */
    margin: 0; /* Remove default margin */
    font-weight: 600;
}

/* Styles for content INSIDE the SweetAlert modal (Point 2 Fix) */
.gear-modal-popup .swal2-html-container {
    padding: 0 !important; /* Remove default padding */
    margin: 0 !important;
    max-height: 70vh; /* Limit modal height */
    overflow-y: auto; /* Add scroll if needed */
}
/* Add scrollbar styling */
.gear-modal-popup .swal2-html-container::-webkit-scrollbar {
  width: 8px;
}
.gear-modal-popup .swal2-html-container::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}
.gear-modal-popup .swal2-html-container::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}
.gear-modal-popup .swal2-html-container::-webkit-scrollbar-thumb:hover {
  background: #aaa;
}

.gear-modal-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); /* Grid layout for cards */
    gap: 20px;
    padding: 10px 25px 25px 25px; /* Padding around cards */
    text-align: left;
}
.gear-modal-popup .swal2-title {
    color: #002366;
    margin-bottom: 10px !important; /* Space below title */
    padding-top: 1em !important;
}

.info-card { /* Styling for cards inside the modal */
    background: #ffffff;
    border-radius: 8px;
    padding: 20px;
    margin: 0; /* Remove margin, use grid gap */
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
    transition: none; /* No hover effect needed inside modal */
    border: 1px solid #eee;
}
.info-card:hover {
    transform: none; /* Disable hover transform inside modal */
}

.info-card .image-container {
    text-align: center;
    margin-bottom: 15px;
}

.info-card img.info-image { /* Target all info images */
    cursor: pointer; /* Indicate image is clickable */
    transition: transform 0.2s ease; /* Add subtle hover effect */
}
.info-card img.info-image:hover {
    transform: scale(1.05); /* Slight zoom on hover */
}

.info-card img.info-image.small-image {
    max-width: 150px; /* Consistent small image size */
    height: 100px; /* Fixed height */
    object-fit: contain; /* Ensure image fits */
    margin: 0 auto;
    display: block;
    border-radius: 6px;
}

.info-card h4 {
    font-size: 1.1rem;
    margin: 0 0 8px 0; /* Adjusted margin */
    color: #003366;
    font-weight: 600;
}

.info-card p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
    margin-bottom: 0; /* Remove default p margin */
}


/* Footer Styling */
.footer {
    text-align: center;
    padding: 15px; /* Increased padding */
    background-color: #001a4d; /* Darker footer */
    color: rgba(255, 255, 255, 0.7);
    width: calc(100% - 280px); /* Adjust based on sidebar width */
    margin-left: 280px;
    font-size: 0.85rem;
    z-index: 100;
    margin-top: auto; /* Push to bottom if content is short */
    transition: margin-left 0.3s ease-out, width 0.3s ease-out;
}


/* --- Responsive --- */

/* Large screens */
@media screen and (min-width: 1600px) {
    .side-bar {
        width: 320px; /* Wider sidebar for large screens */
    }

    .main-content {
        width: calc(100% - 320px);
        margin-left: 320px;
        max-width: 1600px; /* Prevent content from stretching too wide */
        margin-right: auto;
    }

    .footer {
        width: calc(100% - 320px);
        margin-left: 320px;
    }

    .logo {
        width: 200px; /* Larger logo for big screens */
    }

    .animated-text {
        font-size: 1.3rem;
    }

    .animated-subtext {
        font-size: 1rem;
    }

    .nav-item {
        padding: 14px 20px; /* More padding for navigation items */
    }
}

/* Extra large screens */
@media screen and (min-width: 2000px) {
    .side-bar {
        width: 360px; /* Even wider sidebar for very large screens */
    }

    .main-content {
        width: calc(100% - 360px);
        margin-left: 360px;
        max-width: 1800px;
        padding: 50px 80px;
    }

    .footer {
        width: calc(100% - 360px);
        margin-left: 360px;
    }

    .welcome-message, .section-title {
        font-size: 3rem;
    }

    .welcome-subtext {
        font-size: 1.3rem;
        max-width: 900px;
    }
}

/* Medium devices (Tablets & Smaller Desktops) */
@media screen and (max-width: 992px) {
    .side-bar {
        /* Sidebar is hidden off-canvas */
        transform: translateX(-100%);
        position: fixed; /* Ensure it's fixed for mobile */
        width: 280px; /* Keep width consistent */
        height: 100%;
    }
    .side-bar.active { /* State when shown */
        transform: translateX(0);
    }

    .mobile-menu-icon {
        display: flex; /* Show hamburger - use flex for centering icon */
        align-items: center;
        justify-content: center;
    }
    .nav-overlay {
        display: block; /* Enable overlay logic */
    }

    .main-content {
        width: 100%;
        margin-left: 0;
        padding: 80px 20px 40px 20px; /* Adjust top padding for potential fixed header */
    }

    .footer {
        width: 100%;
        margin-left: 0;
        position: static; /* Footer becomes static */
        margin-top: 30px;
    }

    .logo {
        width: 150px; /* Adjust logo size in sidebar */
    }
    .carousel-container img {
        height: 300px; /* Adjust height */
    }
    .sidebar-bottom-links {
        display: block; /* Ensure bottom links are visible in mobile sidebar */
    }
    .welcome-message { font-size: 2rem; } /* Adjust welcome message size */
}

/* Small devices (Mobile phones) */
@media screen and (max-width: 768px) {
    .main-content {
        padding: 75px 15px 30px 15px; /* Adjust padding */
    }
    .welcome-message, .section-title {
        font-size: 1.8rem;
    }
    .welcome-subtext {
        font-size: 1rem;
    }
    .carousel-container img {
        height: 250px; /* Adjust height */
    }
     .carousel-buttons button {
        width: 40px;
        height: 40px; font-size: 1.2rem;
    }
    .action-section {
        flex-direction: column;
        gap: 15px;
    }
    .additional-links a {
        width: 100%;
        max-width: 300px; /* Limit button width */
        margin: 0 auto;
    }
     .info-categories {
        grid-template-columns: 1fr; /* Single column */
        gap: 15px;
    }
     .footer {
        padding: 10px;
        font-size: 0.8rem;
    }
    .gear-modal-content {
        grid-template-columns: 1fr; /* Single column in modal */
        padding: 10px 15px 15px 15px;
    }

    /* --- Mobile Sidebar Expansion --- */
    .side-bar .logo {
        width: 180px; /* Larger logo in mobile sidebar */
        margin-bottom: 20px; /* More space below logo */
    }
    .side-bar .nav-item {
        padding: 15px 20px; /* Increase padding for larger touch target */
        font-size: 1rem; /* Slightly larger font */
        margin: 12px 0; /* More space between items */
    }
     .side-bar .nav-item i {
        font-size: 1.2em; /* Slightly larger icon */
        margin-right: 18px;
     }
     .sidebar-bottom-links {
         padding: 20px 15px 15px 15px; /* More padding */
     }
     .bottom-nav-item {
         padding: 12px 15px; /* More padding */
         font-size: 0.95rem; /* Larger font */
     }
     .bottom-nav-item i {
         font-size: 1.1rem; /* Larger icon */
     }
}

/* Extra small devices */
@media screen and (max-width: 480px) {
     .main-content {
        padding: 70px 10px 20px 10px;
     }
    .logo {
        width: 120px; /* Adjust logo size */
    }
    .animated-text { font-size: 1rem; }
    .animated-subtext { font-size: 0.8rem; }
    .nav-item { padding: 12px 15px; font-size: 0.95rem; } /* Adjust padding */
    .nav-item i { margin-right: 12px; }

    .welcome-message { font-size: 1.6rem; } /* Adjusted */
    .section-title { font-size: 1.5rem; }
    .welcome-subtext { font-size: 0.9rem; }

    .carousel-container img { height: 200px; }
    .carousel-indicators button { width: 8px; height: 8px; }

    .info-category h3 { font-size: 1.1rem; }
    .info-card h4 { font-size: 1rem; }
    .info-card p { font-size: 0.85rem; }
    .info-card img.info-image.small-image { max-width: 120px; height: 80px; }

    .register-button { font-size: 1rem; padding: 8px 20px; } /* If register button exists */
}

/* Landscape orientation fixes */
@media screen and (max-height: 500px) and (orientation: landscape) {
   .side-bar { overflow-y: auto; } /* Ensure sidebar scrolls if needed */
}

/* Touch-friendly adjustments */
@media (hover: none) {
    .nav-item:hover {
        background: transparent; /* Disable hover background */
        transform: none;
    }
    .nav-item:active {
         background: rgba(255, 255, 255, 0.1); /* Active state for touch */
    }
    .carousel-buttons button:hover {
        background-color: rgba(0, 0, 0, 0.4); /* Reset hover */
        transform: none;
    }
    .info-category:hover {
        transform: none;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Reset hover */
    }
     .additional-links a:hover {
        transform: none;
        box-shadow: 0 2px 5px rgba(0, 35, 102, 0.2);
    }
}

/* --- START OF NEW ATTRACTION SECTION STYLES --- */
.attraction-section {
    background-color: #e9f5ff; /* Light blue background */
    padding: 60px 20px;
    text-align: center;
    margin-top: 50px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 35, 102, 0.08);
}

.attraction-section .container {
    max-width: 1000px;
    margin: 0 auto;
}

.attraction-section .section-title {
    margin-bottom: 40px;
    color: #002366;
}

.attraction-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.attraction-item {
    background-color: #ffffff;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.attraction-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 84, 166, 0.1);
}

.attraction-item i {
    font-size: 3rem;
    color: #0054a6; /* Blue icon color */
    margin-bottom: 15px;
}

.attraction-item h3 {
    font-size: 1.3rem;
    color: #003366;
    margin-bottom: 10px;
    font-weight: 600;
}

.attraction-item p {
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
}

.cta-attraction p {
    font-size: 1.2rem;
    color: #002366;
    margin-bottom: 20px;
    font-weight: 600;
}

.cta-attraction .btn-primary {
    display: inline-block; /* Make it behave like a button */
    background-color: #0054a6; /* Blue button */
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 84, 166, 0.3);
}

.cta-attraction .btn-primary:hover {
    background-color: #003366; /* Darker blue on hover */
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 84, 166, 0.4);
}

/* Responsive adjustments for attraction section */
@media screen and (max-width: 768px) {
    .attraction-section {
        padding: 40px 15px;
    }

    .attraction-points {
        grid-template-columns: 1fr; /* Stack items on smaller screens */
        gap: 20px;
    }

    .attraction-item {
        padding: 25px 15px;
    }

    .attraction-item i {
        font-size: 2.5rem;
    }

    .attraction-item h3 {
        font-size: 1.2rem;
    }

    .attraction-item p {
        font-size: 0.95rem;
    }

    .cta-attraction p {
        font-size: 1rem;
    }

    .cta-attraction .btn-primary {
        padding: 10px 25px;
        font-size: 1rem;
    }
}
/* --- END OF NEW ATTRACTION SECTION STYLES --- */