 .popup {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background-color: white;
            padding: 20px;
            border: 1px solid #ccc;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
            z-index: 9999;
        }
        .popup img {
            width: 400px;
            height: 600px;
        }
        
         .close-button {
        position: absolute;
        top: 10px;
        right: 10px;
        cursor: pointer;
        font-size: 20px;
        color: #000;
    }





/* Style the Total Visitors */
.visitor {
    
    background-color: #333; /* Background color of the footer */
    color: #FFC300; /* Text color */
    padding: 20px; /* Padding inside the footer */
    text-align: center; /* Center-align text within the footer */
}



/* Styles for the Footer */
footer {
    
    background-color: #333; /* Background color of the footer */
    color: #fff; /* Text color */
    padding: 20px; /* Padding inside the footer */
    text-align: center; /* Center-align text within the footer */
}

/* Style for hyperlinks inside the footer */
footer a {
    color: #fff; /* Link text color */
    text-decoration: none; /* Remove underline from links */
    transition: color 0.3s; /* Smooth color transition on hover */
}

footer a:hover {
    color: #007BFF; /* Link text color on hover */
}

.footer-text {
    display: inline;
}


/* Contact Form Styles */
.contact-form {
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f7f7f7;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.contact-form h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

.contact-form label {
    display: block;
    font-weight: bold;
    margin-bottom: 10px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form textarea {
    height: 150px;
}

.contact-form button {
    background-color: #2596be;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #1d7ca7;
}

/*fancy text comming soon*/

   .fancy-text {
            font-size: 36px;
            font-weight: bold;
            text-align: center;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-top: 50px;
            animation: sparkle 2s linear infinite;
        }
        
        @keyframes sparkle {
            0% { color: gold; }
            50% { color: transparent; }
            100% { color: gold; }
        }
        
        /*cotact details fancy text*/
.contact-container {
            text-align: center;
            background-color: #336699;
            padding: 20px;
        }

.contact-details {
            font-size: 24px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #FFCC00;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            font-family: 'Arial', sans-serif;
        }
        /*FANCY WELCOME TEXT*/
.welcome-text {
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
    background-color: #336699;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    font-family: Arial, sans-serif;
    color: #FFCC00;
    font-size: 24px;
    font-weight: bold;
}


     /*DROP DOWN MENU*/


.dropdown {
  position: relative;
  display: inline-block;
}

.dropbtn {
  background-color: #4CAF50;
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown:hover .dropdown-content {
  display: block;
}


