.icon_main .menu_text ul {
    padding: 0; /* Remove default padding */
    margin: 0;  /* Remove default margin */
    list-style: none; /* Remove list bullets */
    display: flex; /* Use flexbox for horizontal alignment */
    justify-content: center; /* Center the items horizontally */
}

.icon_main .menu_text ul li {
    margin-right: 20px; /* Add space between the icons */
}

.icon_main .menu_text ul li img {
    width: 40px; /* Adjust icon size as needed */
    height: auto; /* Maintain aspect ratio */
}
	.icon_main .menu_text ul li a {
    cursor: pointer; /* This changes the cursor to a hand when hovering over the link */
}

.icon_main .menu_text ul li a:hover {
    cursor: pointer; /* Ensure the cursor remains pointer when hovering */
}
	button.main_bt {
    background: #2ba879;
    border: none;
    color: #fff;
    width: 150px;
    height: 50px;
    border-radius: 5px;
    font-size: 22px;
}
button.main_bt:hover {
    background-color: #248f68; /* Slightly darker green on hover */
}
	/* Lightbox overlay */
.lightbox {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

/* Lightbox content */
.lightbox-content {
    position: relative;
    margin: 10% auto;
    padding: 20px;
    background-color: white;
    width: 60%;
    max-width: 600px;
    border-radius: 5px;
}

/* Close button */
.close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 30px;
    color: #aaa;
    cursor: pointer;
}

/* Input Fields and Submit Button */
form label {
    display: block;
    margin-bottom: 5px;
}

form input, form select, form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form button {
    background-color: #2ba879;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

form button:hover {
    background-color: #248f68;
}

/* Success message style */
.success-message {
    position: absolute;  /* Position over the form */
    top: 50%;  /* Adjust according to where you want the message */
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 128, 0, 0.8);  /* Green background */
    color: #fff;
    padding: 20px;
    text-align: center;
    border-radius: 5px;
    font-size: 18px;
    width: 100%;
    max-width: 400px;
    display: none;  /* Hidden initially */
}

.error-message {
    color: red;
    font-size: 18px;
    padding: 10px;
    background-color: #f2dede;
    border: 1px solid #ebccd1;
    border-radius: 4px;
    margin-top: 20px;
}
h7 {
	letter-spacing: 0;
     font-weight: normal;
     position: relative;
     padding: 0 0 10px 0;
     line-height: normal;
     color: white;
     margin: 0;
	font-size: 2em
}
.glow_text {
     /* Adjust size as needed */
    font-weight: bold;
    color: white;  /* Text color */
    text-align: center;
    position: relative;
    display: inline-block;
    animation: glowingStroke 2s linear infinite;
}

@keyframes glowingStroke {
    0% {
        text-shadow: 
            0 0 5px #32CD32, 
            0 0 10px #32CD32, 
            0 0 15px #00FF00, 
            0 0 20px #00FF00,
            0 0 30px #7CFC00,
            0 0 40px #7CFC00;
    }
    25% {
        text-shadow: 
            0 0 10px #00FF00, 
            0 0 20px #00FF00, 
            0 0 30px #32CD32, 
            0 0 40px #32CD32,
            0 0 50px #7CFC00;
    }
    50% {
        text-shadow: 
            0 0 15px #7CFC00, 
            0 0 25px #7CFC00, 
            0 0 35px #00FF00, 
            0 0 45px #00FF00,
            0 0 60px #32CD32;
    }
    75% {
        text-shadow: 
            0 0 20px #32CD32, 
            0 0 30px #32CD32, 
            0 0 40px #7CFC00, 
            0 0 50px #7CFC00,
            0 0 70px #00FF00;
    }
    100% {
        text-shadow: 
            0 0 5px #00FF00, 
            0 0 10px #00FF00, 
            0 0 15px #32CD32, 
            0 0 20px #32CD32,
            0 0 30px #7CFC00;
    }
}
  .gallery-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center; /* Centers the thumbnails horizontally */
            gap: 10px;
            margin-top: 20px;
        }

        .gallery-container img {
            width: 100px;
            height: 100px;
            object-fit: cover;
            cursor: pointer;
            border-radius: 5px;
            transition: transform 0.2s;
        }

        .gallery-container img:hover {
            transform: scale(1.1);
        }

        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            display: flex;
            align-items: center; /* Vertically center */
            justify-content: center; /* Horizontally center */
        }

        .modal-content {
            position: relative;
            width: 50%;
            max-width: 600px;
            border-radius: 10px;
            background: white;
            padding: 15px;
            text-align: center;
        }

        .modal img {
            width: 100%;
            height: auto;
            max-height: 80vh;
            border-radius: 10px;
        }

        .close {
            position: absolute;
            top: 10px;
            right: 20px;
            font-size: 30px;
            font-weight: bold;
            color: black;
            cursor: pointer;
            background: white;
            padding: 5px 10px;
            border-radius: 50%;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .modal-content {
                width: 90%;
            }
        }
