:root {
    --primary-green: #1C7F56;
    --secondary-green: #166647;
    --text-light: #6b6b6b;
    --text-dark: #1a1a1a;
    --border-color: #e0e0e0;
    --bg-light-grey: #f8f9fa;
    --body-bg: #f7f7f7;
    --circle-color: #B9F8CF;
    --light-green: #1C7F56;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--body-bg);
    color: var(--text-dark);
    position: relative;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

img {
    max-width: 100%;
    height: auto;
}

.blur-circle {
    position: absolute;
    z-index: -1;
    border-radius: 50%;
}

.main-wrapper {
    width: 95%;
    max-width: 95%;
    margin: 20px auto;
    background: none;
    border-radius: 25px;
    overflow: visible;
}

.navbar {
    position: relative;
    top: 0;
    left: auto;
    transform: none;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background: #166647;
    border-radius: 48px;
    height: auto;
    min-height: 138px;
    z-index: 100;
    transition: height 0.3s ease;
}

.navbar-header {
    display: flex;
    align-items: center;
}

.navbar .logo {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 -1px 0 rgba(255, 255, 255, 0.1), inset 0 0 0px 0px rgba(255, 255, 255, 0);
    padding: 7px 20px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 137px;
    height: 64px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    margin-right: 20px;
    z-index: 2;
}

.navbar .logo img {
    display: block;
    height: 45px;
    width: 93px;
    max-width: 100%;
}

.navbar .logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
}

.navbar .logo::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.8), transparent, rgba(255, 255, 255, 0.3));
}

.nav-wrapper {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 -1px 0 rgba(255, 255, 255, 0.1), inset 0 0 0px 0px rgba(255, 255, 255, 0);
    padding: 12px;
    border-radius: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: auto;
    max-width: 850px;
    height: 64px;
    gap: 8px;
    position: static;
    left: auto;
    transform: none;
    overflow: visible;
    flex-grow: 1;
    margin: 0 20px;
    z-index: 100;
}

.nav-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
}

.nav-wrapper::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.8), transparent, rgba(255, 255, 255, 0.3));
}

.nav-links {
    display: flex;
    gap: 30px;
    flex-wrap: nowrap;
    justify-content: center;
    flex-grow: 1;
    transition: all 0.4s ease-in-out;
}

.nav-links a {
    color: white;
    text-decoration: none;
    padding: 16px 8px;
    border-radius: 20px;
    opacity: 0.7;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    width: auto;
    min-width: 90px;
    height: 40px;
    flex-shrink: 0;
    white-space: nowrap;
    border: 1px solid transparent;
}

.nav-links a:hover {
    opacity: 1;
}

.nav-links a.active {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.7);
    opacity: 1;
    width: auto;
    min-width: 90px;
    height: 40px;
    padding: 16px 8px;
}

.nav-links .mobile-btn {
    display: none;
}

.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    flex-shrink: 0;
    /* Fixed width equal to the .nav-btn on other pages to prevent nav-wrapper shifting */
    width: 271px;
    z-index: 2;
}

.btn-apply {
    text-decoration: none;
    color: #ffffff;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.7);
    padding: 0.7rem 1.5rem;
    border-radius: 32px;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    cursor: pointer;
    height: 64px;
    box-sizing: border-box;
    min-width: 120px;
}

.btn-apply:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.arrow-circle {
    margin-left: 5px;
}

.header-user-info {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.hidden {
    display: none !important;
}

.user-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    padding: 0.7rem 1.5rem;
    border-radius: 32px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 64px;
    white-space: nowrap;
}

.user-status-pill:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.user-status-pill::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid white;
    margin-left: 5px;
}

.user-status-pill svg {
    margin-top: -1px;
    stroke-width: 2;
}

.hamburger-menu {
    cursor: pointer;
    width: 40px;
    height: 40px;
    padding: 5px;
    box-sizing: border-box;
    z-index: 1000;
    display: none;
    align-self: center;
}

.hamburger-menu span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: white;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

main {
    display: block;
    max-width: 90%;
    margin: 0 auto;
    padding: 0 1rem;
}

.hero-container {
    display: flex;
    margin-top: 4rem;
    margin-bottom: 4rem;
    align-items: center;
    gap: 3rem;
}

.hero-content {
    flex: 1;
}

.hero-content .sub-heading {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.hero-content .sub-heading svg {
    color: var(--text-light);
}

.hero-content h1 {
    font-size: 3.25rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.hero-content .description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    text-decoration: none;
    padding: 0.85rem 1.75rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
}

.btn-primary {
    background-color: #1C7F56;
    color: white;
    border: 2px solid var(--light-green);
}

.btn-primary:hover {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-dark);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    background-color: var(--bg-light-grey);
    border-color: #ccc;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-image-slideshow {
    position: relative;
    width: 100%;
    min-height: 400px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    flex: 1;
}

.hero-image-slideshow .slideshow-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-image-slideshow .slideshow-img.active {
    opacity: 1;
}

.search-filter-container {
    margin-top: 4rem;
    margin-bottom: 4rem;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 200;
}

.filter-row {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.search-bar {
    flex-grow: 1;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background-color: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
}

.search-bar input {
    width: 100%;
    border: none;
    outline: none;
    background-color: transparent;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
}

.search-bar input::placeholder {
    color: #555;
}

.filter-dropdowns {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.custom-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background-color: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    min-width: 140px;
    white-space: nowrap;
    transition: border-color 0.3s ease;
}

.dropdown-toggle:hover {
    border-color: rgba(0, 0, 0, 0.1);
}

.dropdown-toggle svg {
    color: #555;
    width: 16px;
    height: 16px;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    min-width: 100%;
    list-style: none;
    padding: 0.5rem;
    z-index: 100;
    background-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0.6rem 1rem;
    cursor: pointer;
    border-radius: 6px;
    font-size: 0.95rem;
    transition: background-color 0.2s ease;
    list-style-type: none;
    font-family: 'Poppins', sans-serif;
}

.dropdown-menu li:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.sort-by-container {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

#sort-icon-btn {
    min-width: 0;
    width: 44px;
    height: 44px;
    padding: 0;
    justify-content: center;
    background-color: #ffffff;
    border: 1px solid var(--border-color);
}

#sort-icon-btn svg {
    color: var(--primary-green);
    margin-right: 0;
}

#filter-sort .dropdown-menu {
    left: auto;
    right: 0;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.projects-section {
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.projects-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.projects-section .section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-family: 'Poppins', sans-serif;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
    margin-bottom: 40px;
}

.project-card {
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

.project-card:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.07);
    transform: translateY(-5px);
}

.project-card.hidden {
    display: none !important;
    opacity: 0;
}

.card-image-container {
    width: 100%;
    height: 180px;
    overflow: hidden;
    background-color: var(--bg-light-grey);
    border-bottom: 1px solid #f0f0f0;
}

.card-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-card:hover .card-image-container img {
    transform: scale(1.05);
}

.card-content-wrapper {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--primary-green);
    background-color: #e8f5e9;
}

.card-icon svg {
    width: 24px;
    height: 24px;
}

.icon-agritech { color: #388e3c; background-color: #e8f5e9; }
.icon-security { color: #1976d2; background-color: #e3f2fd; }
.icon-health { color: #c2185b; background-color: #fce4ec; }
.icon-fintech { color: #f57c00; background-color: #fff3e0; }
.icon-sustainability { color: #00796b; background-color: #e0f2f1; }
.icon-edutech { color: #512da8; background-color: #ede7f6; }
.icon-default { color: var(--text-light); background-color: #eee; }

.project-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0.75rem 0;
}

.tag {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    font-family: 'Poppins', sans-serif;
}

.tag-blue { background-color: #e3f2fd; color: #1976d2; }
.tag-green { background-color: #e8f5e9; color: #388e3c; }
.tag-purple { background-color: #f3e5f5; color: #7b1fa2; }
.tag-grey { background-color: #f5f5f5; color: #616161; }

.card-college {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
    font-family: 'Poppins', sans-serif;
}

.card-trl {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
    align-self: flex-start;
}

.trl-blue { background-color: #e9e7fd; color: #4527a0; }
.trl-yellow { background-color: #fff8e1; color: #f9a825; }
.trl-orange { background-color: #fff3e0; color: #f57c00; }
.trl-green { background-color: #e8f5e9; color: #2e7d32; }
.trl-grey { background-color: #f5f5f5; color: #616161; }

.card-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    overflow-wrap: break-word;
    word-wrap: break-word;
    max-width: 100%;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.card-link {
    text-decoration: none;
    color: var(--primary-green);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: gap 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.card-link:hover {
    gap: 0.6rem;
}

.card-actions button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    margin-left: 0.5rem;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.card-actions button:hover {
    opacity: 1;
}

.btn-edit {
    color: #1976d2;
}

.btn-delete {
    color: #e53935;
}

.no-projects-message {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--text-light);
    padding: 3rem 1rem;
    font-size: 1.1rem;
    font-family: 'Poppins', sans-serif;
}

.pagination-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
    margin-bottom: 60px;
    flex-wrap: wrap;
    font-family: 'Poppins', sans-serif;
}

.page-btn {
    height: 56px;
    width: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    color: #1C7F56;
    border: 1px solid rgba(28, 127, 86, 0.2);
    transition: all 0.2s ease-in-out;
    flex-shrink: 0;
    font-family: 'Poppins', sans-serif;
}

.page-btn.active {
    background: #1C7F56;
    color: white;
    border-color: #1C7F56;
    font-weight: 600;
}

.page-btn:hover:not(.disabled):not(.active) {
    background: rgba(28, 127, 86, 0.1);
    transform: translateY(-2px);
}

.page-btn.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    background: #f5f5f5;
    color: #999;
    border-color: #ddd;
}

.closing-section {
    width: 90%;
    max-width: 90%;
    padding: 60px 0;
    box-sizing: border-box;
    margin: 0 auto;
}

.cta-box {
    font-family: 'Poppins', sans-serif;
    color: white;
    text-align: center;
    padding: 60px 40px;
    border-radius: 48px;
    margin-bottom: 60px;
    height: auto;
    min-height: 459px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-image:
    linear-gradient(40deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(20, 102, 82, 0.58) 50%,
      #297B68 100%),
    url('/graphics/ctaCover.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.cta-box h2 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 15px;
}

.cta-box p {
    font-size: 24px;
    opacity: 0.9;
    margin-bottom: 30px;
    line-height: 1.5;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
    width: 100%;
}

.cta-btn {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    inset 0 -1px 0 rgba(255, 255, 255, 0.1),
    inset 0 0 0px 0px rgba(255, 255, 255, 0);
    padding: 12px 32px;
    border-radius: 30px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s ease;
    width: auto;
    min-width: 200px;
    height: 64px;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    white-space: nowrap;
}

.cta-btn:hover {
    background: rgba(255, 255, 255, 0.15);
}

.footer-section {
    width: 100%;
    background: white;
    padding: 60px 0;
    box-sizing: border-box;
}

.footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    flex-wrap: wrap;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 15px;
}

.footer-logo-img {
    width: 198px;
    height: 96px;
    display: block;
    margin-bottom: 6px;
}

.logo-placeholder {
    width: 80px;
    height: 50px;
    background: #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    margin-bottom: 6px;
}

.footer-small {
    font-size: 12px;
    opacity: 0.7;
}

.footer-tagline {
    font-size: 24px;
    font-weight: 500;
    opacity: 0.7;
    margin-right: 20px;
    text-align: right;
    flex-grow: 1;
}

.footer-divider {
    width: 90%;
    max-width: 90%;
    margin: 0 auto;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.footer-divider.bottom-line {
    margin-top: 60px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 90%;
    max-width: 90%;
    margin: 0 auto;
    gap: 40px;
    padding: 40px 0;
}

.footer-column {
    flex-grow: 1;
    min-width: 150px;
    max-width: 250px;
}

.footer-column:last-child {
    flex-grow: 2;
    min-width: 250px;
    max-width: 400px;
}

.footer-column h4 {
    font-size: 20px;
    margin-bottom: 30px;
    font-weight: bold;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 20px;
}

.footer-column ul li a {
    font-size: 20px;
    opacity: 0.4;
    text-decoration: none;
    color: inherit;
}

.contact-item {
    display: flex;
    align-items: center;
    font-size: 14px;
    margin-bottom: 6px;
}

.contact-item span {
    margin-right: 6px;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.social-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #1C7F56;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: bold;
    font-size: 32px;
    flex-shrink: 0;
}

.social-icon:hover {
    opacity: 1;
}

.map-container {
    width: 100%;
    height: 224px;
    overflow: hidden;
}

.footer-bottom {
    margin-top: 16px;
    text-align: center;
    font-size: 14px;
    opacity: 0.4;
    padding-top: 16px;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1050;
    opacity: 1;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 20px;
    overflow-y: auto;
}

.modal-overlay.modal-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.auth-modal {
    background-color: #ffffff;
    border-radius: 24px;
    padding: 40px;
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    transform: scale(1);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin: auto;
    font-family: 'Poppins', sans-serif;
    display: flex;
    flex-direction: column;
}

.profile-modal {
    background-color: #ffffff;
    border-radius: 24px;
    padding: 40px;
    width: 100%;
    max-width: 700px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    transform: scale(1);
    transition: all 0.3s ease;
    margin: auto;
    font-family: 'Poppins', sans-serif;
}

.modal-overlay.modal-hidden .auth-modal,
.modal-overlay.modal-hidden .profile-modal {
    transform: scale(0.95);
    opacity: 0;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.modal-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.modal-close-btn {
    position: absolute;
    top: 24px;
    right: 24px;
    background: #f5f5f5;
    border: none;
    cursor: pointer;
    color: #666;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 10;
}

.modal-close-btn:hover {
    background-color: #e0e0e0;
    color: #000;
    transform: rotate(90deg);
}

.modal-close-btn svg {
    width: 20px;
    height: 20px;
    stroke-width: 2.5;
}

.modal-body {
    flex-grow: 1;
}

.profile-header-section {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.profile-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--primary-green);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 600;
}

.profile-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #1a1a1a;
}

.profile-info p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.profile-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
}

.input-with-icon {
    position: relative;
    width: 100%;
}

.input-with-icon svg {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    width: 20px;
    height: 20px;
    pointer-events: none;
    transition: color 0.3s ease;
}

.input-with-icon input,
.input-with-icon select,
.input-with-icon textarea {
    width: 100%;
    padding: 14px 16px 14px 48px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #1f2937;
    background-color: #f9fafb;
    transition: all 0.3s ease;
    outline: none;
}

.input-with-icon input:focus,
.input-with-icon select:focus,
.input-with-icon textarea:focus {
    border-color: var(--primary-green);
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(28, 127, 86, 0.1);
}

.input-with-icon input:focus + svg {
    color: var(--primary-green);
}

.btn-form {
    display: block;
    width: 100%;
    padding: 16px;
    border-radius: 14px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    margin-top: 10px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn-form-primary {
    background-color: var(--primary-green);
    color: white;
    box-shadow: 0 4px 12px rgba(28, 127, 86, 0.3);
}

.btn-form-primary:hover {
    background-color: #166647;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(28, 127, 86, 0.4);
}

.btn-form-primary:active {
    transform: translateY(0);
}

.form-switcher {
    text-align: center;
    font-size: 0.95rem;
    color: #6b7280;
    margin-top: 24px;
}

.form-switcher a {
    color: var(--primary-green);
    font-weight: 600;
    text-decoration: none;
    margin-left: 5px;
    cursor: pointer;
    transition: color 0.2s;
}

.form-switcher a:hover {
    text-decoration: underline;
    color: #166647;
}

.alert-modal {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 1.5rem 2rem;
    width: 100%;
    max-width: 380px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    text-align: center;
    transform: scale(1);
    transition: transform 0.3s ease;
}

.modal-overlay.modal-hidden .alert-modal {
    transform: scale(0.95);
}

/* Uploading visual indicator for image-upload-slot */
.image-upload-slot {
    position: relative;
}
.image-upload-slot.uploading::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 40;
}
.image-upload-slot.uploading::after {
    background: rgba(255,255,255,0.45);
}
.image-upload-slot.uploading::before {
    content: '';
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 4px solid rgba(0,0,0,0.1);
    border-top-color: var(--primary-green);
    animation: spin 1s linear infinite;
    position: absolute;
    z-index: 41;
}
@keyframes spin { to { transform: rotate(360deg); } }

.alert-modal h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.alert-modal p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.btn-alert-ok {
    display: inline-block;
    padding: 0.7rem 2.5rem;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    background-color: var(--primary-green);
    color: white;
}

.btn-alert-ok:hover {
    background-color: #1a5238;
}

.header-logo {
    height: 35px;
    width: auto;
}

.promo-logo {
    height: 75px;
    width: auto;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media screen and (min-width: 1025px) and (max-width: 1440px) {
    .navbar {
        padding: 15px 15px;
        flex-wrap: nowrap;
        justify-content: space-between;
    }

    .navbar .logo {
        margin-right: 5px;
        width: 110px;
        padding: 5px 10px;
    }

    .navbar .logo img {
        width: 70px;
        height: auto;
    }

    .nav-wrapper {
        margin: 0 5px;
        padding: 8px;
        gap: 0;
        max-width: none;
        flex-grow: 1;
        width: auto;
        justify-content: center;
    }

    .nav-links {
        gap: 5px;
        width: 100%;
        justify-content: space-evenly;
    }

    .nav-links a,
    .nav-links a.active {
        font-size: 13px;
        min-width: auto;
        padding: 10px 10px;
        height: 35px;
    }

    .header-actions {
        width: 210px; /* Forces this container to be the same size as the reduced nav-btn on other pages */
        gap: 5px;
        justify-content: flex-end;
    }

    .btn-apply,
    .user-status-pill {
        padding: 0.5rem 1rem;
        font-size: 13px;
        height: 64px;
        min-width: auto;
    }
}

@media (max-width: 1200px) {
    .nav-wrapper {
        max-width: 500px;
    }
}

@media (max-width: 1024px) {
    .navbar-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .navbar {
        flex-direction: column;
        gap: 0;
        padding: 15px 20px;
        min-height: auto;
    }

    .nav-wrapper {
        max-width: 100%;
        width: 100%;
        margin: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        height: auto;
        padding: 0;
        background: transparent;
        box-shadow: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        order: 3;
    }

    .header-actions {
        order: 2;
        width: 100%;
        justify-content: center;
        margin-top: 0;
        margin-bottom: 0;
        display: none;
        flex-direction: column;
        height: auto;
        padding: 10px 0;
    }

    .header-actions.open {
        display: flex;
        animation: fadeIn 0.4s ease-in-out;
    }

    .btn-apply, .user-status-pill {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        height: 50px;
    }

    .nav-links .mobile-btn {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        color: white;
        opacity: 0.7;
        height: 50px;
        width: 100%;
        padding: 0 8px;
        border-radius: 20px;
        text-decoration: none;
        position: relative;
        font-weight: normal;
    }

    .nav-links .mobile-btn:hover {
        opacity: 0.9;
        background: rgba(255, 255, 255, 0.1);
    }

    .navbar .logo {
        margin-right: 0;
        margin-left: 15px;
        margin-top: 0;
        margin-bottom: 0;
    }

    .nav-wrapper::before,
    .nav-wrapper::after {
        display: none;
    }

    .hamburger-menu {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        position: static;
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.07);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 8px;
        padding: 5px;
        z-index: 1001;
        margin-top: 0;
        margin-bottom: 0;
        margin-right: 15px;
    }

    .nav-links {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        overflow: hidden;
        max-height: 0;
        opacity: 0;
        visibility: hidden;
        padding: 0;
        background: rgba(255, 255, 255, 0.07);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 20px;
        transition: all 0.4s ease-in-out;
    }

    .nav-links.open {
        max-height: 600px;
        opacity: 1;
        visibility: visible;
        padding: 12px;
        margin-bottom: 10px;
        margin-top: 10px;
    }

    .nav-links a {
        flex-grow: 1;
        justify-content: center;
        gap: 10px;
        min-width: unset;
        width: 100%;
    }

    .nav-links a.active {
        width: 100%;
        height: 50px;
        font-size: 16px;
        padding: 10px 8px;
        text-align: center;
        margin-bottom: 5px;
    }

    .hamburger-menu.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger-menu.open span:nth-child(2) {
        opacity: 0;
    }

    .hamburger-menu.open span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
        margin-top: 3rem;
        margin-bottom: 3rem;
        gap: 2rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
        line-height: 1.3;
    }

    .hero-content .description {
        font-size: 1rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .search-filter-container {
        padding: 1.5rem;
        margin-top: 3rem;
        margin-bottom: 3rem;
    }

    .filter-row {
        flex-direction: column;
        gap: 1rem;
    }

    .search-bar {
        width: 100%;
    }

    .filter-dropdowns {
        width: 100%;
        justify-content: space-between;
    }

    .filter-dropdowns .custom-dropdown {
        flex-basis: 50%;
    }

    .dropdown-toggle {
        width: 100%;
        min-width: auto;
    }

    .sort-by-container {
        width: 100%;
        justify-content: space-between;
    }

    .project-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .hero-image-slideshow {
        order: 1;
        height: 300px;
        margin-bottom: 30px;
    }
}

@media (max-width: 992px) {
    .contact-wrapper {
        gap: 40px;
    }

    .profile-modal {
        max-width: 90%;
    }
}

@media (max-width: 768px) {
    .contact-title {
        font-size: 48px;
    }

    .contact-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .contact-form {
        min-height: auto;
    }

    .info-block h3 {
        font-size: 28px;
    }

    .info-block p {
        font-size: 20px;
        margin-bottom: 40px;
    }

    .cta-box h2 {
        font-size: 38px;
    }

    .cta-box p {
        font-size: 20px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .cta-btn {
        width: 100%;
        max-width: 300px;
    }

    .footer-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 0;
    }

    .footer-tagline {
        font-size: 18px;
        margin-right: 0;
        margin-bottom: 15px;
        text-align: center;
    }

    .footer-logo {
        align-items: center;
    }

    .footer-top {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }

    .footer-column,
    .footer-column:last-child {
        max-width: 100%;
        min-width: 100%;
        text-align: center;
    }

    .footer-column ul {
        width: fit-content;
        margin: 0 auto;
    }

    .footer-column h4 {
        margin-bottom: 15px;
    }

    .footer-column ul li a {
        font-size: 18px;
    }

    .social-links {
        justify-content: center;
    }

    .modal-overlay {
        padding: 16px;
    }

    .auth-modal {
        max-width: 100%;
        padding: 32px 24px;
        border-radius: 20px;
    }

    .profile-modal {
        padding: 32px 24px;
    }

    .profile-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .modal-header h2 {
        font-size: 1.5rem;
    }

    .pagination-container {
        gap: 6px;
        margin-top: 30px;
        margin-bottom: 40px;
    }

    .page-btn {
        height: 48px;
        width: 48px;
        font-size: 15px;
    }
}

@media (max-width: 600px) {
    .hero-container {
        margin-top: 2rem;
        margin-bottom: 2rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .btn {
        width: 100%;
    }

    .search-filter-container {
        padding: 1rem;
    }

    .filter-dropdowns {
        flex-direction: column;
        gap: 0.75rem;
    }

    .filter-dropdowns .custom-dropdown {
        flex-basis: 100%;
    }

    .sort-by-container {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }

    #sort-icon-btn {
        width: 100%;
        height: auto;
        padding: 0.85rem 1.75rem;
    }

    .projects-section {
        margin-top: 2rem;
        margin-bottom: 2rem;
    }

    .projects-section h2 {
        font-size: 1.75rem;
    }

    .projects-section .section-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .project-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .project-card {
        padding: 0;
    }

    .card-content-wrapper {
        padding: 1.25rem;
    }

    .card-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        margin-top: 1rem;
        padding-top: 0.75rem;
    }

    .card-actions {
        width: 100%;
        display: flex;
        justify-content: flex-end;
    }

    .navbar {
        padding: 15px 10px;
    }

    .cta-box {
        padding: 40px 15px;
        min-height: auto;
    }
}

@media (max-width: 576px) {
    .contact-title {
        font-size: 38px;
        margin-bottom: 20px;
    }

    .contact-section {
        padding: 40px 0;
    }

    .contact-form {
        padding: 20px;
    }

    .form-group {
        margin-bottom: 30px;
    }

    .cta-box h2 {
        font-size: 32px;
    }

    .cta-box {
        padding: 40px 20px;
        margin-bottom: 40px;
        min-height: 350px;
    }

    .footer-section {
        padding: 40px 0;
    }

    .footer-divider.bottom-line {
        margin-top: 40px;
    }

    .social-links {
        justify-content: center;
    }

    .modal-overlay {
        padding: 0;
        align-items: flex-end;
        background-color: rgba(0, 0, 0, 0.7);
    }

    .auth-modal,
    .profile-modal {
        width: 100%;
        max-width: 100%;
        margin: 0;
        border-radius: 28px 28px 0 0;
        padding: 30px 24px 40px 24px;
        max-height: 85vh;
        animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        transform: translateY(0);
    }

    .modal-overlay.modal-hidden .auth-modal,
    .modal-overlay.modal-hidden .profile-modal {
        transform: translateY(100%);
        opacity: 1;
    }

    .modal-close-btn {
        top: 20px;
        right: 20px;
        background-color: #f3f4f6;
        width: 32px;
        height: 32px;
    }

    .profile-header-section {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .btn-form {
        padding: 18px;
    }
}

@media (max-width: 480px) {
    .pagination-container {
        gap: 5px;
        margin-top: 20px;
        margin-bottom: 30px;
    }

    .page-btn {
        height: 38px;
        width: 38px;
        font-size: 14px;
    }
}

@media (max-height: 600px) and (orientation: landscape) {
    .modal-overlay {
        align-items: flex-start;
        padding: 10px;
    }

    .auth-modal, .profile-modal {
        margin: 10px auto;
        max-height: none;
        height: auto;
        border-radius: 16px;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cropper-modal-content {
    background-color: #ffffff;
    border-radius: 20px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    padding: 24px;
    position: relative;
    margin: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.cropper-body {
    flex: 1;
    position: relative;
    width: 100%;
    min-height: 250px;
    max-height: 60vh;
    background-color: #f7f7f7;
    margin: 15px 0;
    border-radius: 12px;
    overflow: hidden;
}

.cropper-body img {
    display: block;
    max-width: 100%;
    height: auto;
}

.cropper-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    padding-bottom: 5px;
}

.cropper-actions .btn {
    min-width: 110px;
    white-space: nowrap;
}

.close-modal-btn {
    background: transparent;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #666;
    line-height: 1;
    padding: 0 10px;
    transition: color 0.3s ease;
}

.close-modal-btn:hover {
    color: #000;
}

@media (max-width: 768px) {
    .cropper-modal-content {
        width: 95%;
        padding: 16px;
        max-height: 85vh;
    }

    .modal-header h3 {
        font-size: 1.2rem;
    }

    .cropper-body {
        min-height: 200px;
        max-height: 50vh;
        margin: 10px 0;
    }

    .cropper-actions {
        gap: 8px;
    }

    .cropper-actions .btn {
        flex: 1 1 45%; 
        font-size: 0.9rem;
        padding: 10px 5px;
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .cropper-modal-content {
        border-radius: 16px;
        padding: 14px;
    }

    .cropper-actions .btn {
        flex: 1 1 100%; 
        width: 100%;
    }
}

.navbar-dropdown-container {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.navbar-dropdown-menu {
    position: absolute;
    top: 150%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(22, 102, 71, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    padding: 10px;
    min-width: 220px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    z-index: 9999;
}

.navbar-dropdown-container:hover .navbar-dropdown-menu {
    opacity: 1;
    visibility: visible;
    top: 100%;
}

.navbar-dropdown-menu a {
    color: #fff;
    text-decoration: none;
    padding: 12px 16px;
    border-radius: 12px;
    transition: background 0.3s ease;
    text-align: center;
    font-size: 15px;
    display: block;
    width: 100%;
    white-space: nowrap;
}

.navbar-dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.15);
}

@media (max-width: 1024px) {
    .navbar-dropdown-container {
        flex-direction: column;
        width: 100%;
        height: auto;
    }

    .navbar-dropdown-menu {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        opacity: 1;
        visibility: visible;
        background: transparent;
        box-shadow: none;
        border: none;
        backdrop-filter: none;
        padding: 0;
        min-width: 100%;
        display: none;
    }

    .navbar-dropdown-container:hover .navbar-dropdown-menu {
        display: flex;
        transform: none;
    }

    .navbar-dropdown-menu a {
        font-size: 14px;
        padding: 10px;
        background: rgba(255, 255, 255, 0.05);
        margin-bottom: 5px;
    }
}

