.custom-green-section {
    background: linear-gradient(135deg, #28a745, #218838);
    color: white;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.custom-green-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.section-title {
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 2rem;
}

.mascot-icon {
    width: 100px;
    height: 100px;
    background: url("../img/logo.png") no-repeat center center;
    background-size: contain;
    margin: 0 auto 1rem auto;
}

.image-wrapper {
    display: inline-block;
    border: 5px solid #0056b3; 
    border-radius: 500px; 
    overflow: hidden; 
    background-color: white; 
}

.image-wrapper img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover; 
    border-radius: inherit; 
}

.btn {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.tooltip-modal {
    background: white;
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    max-width: 300px;
    position: absolute;
    z-index: 1050;
    display: none; /* Initially hidden */
}

.tooltip-modal ul {
    list-style: none;
    padding: 0;
    color: black;
}

.tooltip-modal li {
    margin-bottom: 0.5rem;
}

.tooltip.active .tooltip-modal {
    display: block;
}

.tooltip-modal .close-btn {
    margin-top: 1rem;
    background: #28a745;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
}

.tooltip-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1040;
}

.tooltip.active .tooltip-overlay {
    display: block;
}

.tooltip {
    position: relative;
    opacity: 1 !important;
    transition: opacity 0.3s ease-in-out;
}

.tooltip.active {
    opacity: 1 !important;
}

.i-mark {
    font-size: 24px;
    color: #ffffff;
    cursor: pointer;
}

.text-danger {
    color: #dc3545;
    font-weight: bold;
    font-size: 1.1rem;
    margin-left: 5px;
}