h1 {
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    color: orange;
    position: relative;
}
h3 {
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    color: orange;
    position: relative;
}
h1::after {
    content: "";
    display: block;
    width: 80%;
    height: 4px;
    background-color: orange;
    margin: 10px auto;
}

p {
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    color: #333;
}
p1 {
    text-align: left;
    font-size: 14px;
    font-weight: bold;
    color: #333;
}
body {
    font-family: Arial, sans-serif;
    background-color: rgb(240, 249, 255); 
    margin: 0;
    padding: 0;
}

header {
    padding: 40px;
    color: white;
    text-align: left; /* Align header to the left */
    padding-left: 50px; /* Add spacing from the left */

}
  

nav {
    background-color: rgb(2, 132, 199); /* Stylish blue background */
    padding: 15px;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: right; /* Align left */
    gap: 20px; /* Space between links */
    padding-left: 50px;
}

nav ul li {
    display: inline;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    padding: 10px;
    transition: 0.3s;
}

nav ul li a:hover {
    background-color: rgba(255, 255, 255, 0.2); /* Hover effect */
    border-radius: 5px;
}






 

 
 

 
 .center-text {
  text-align: center;
}

nav1 {
    margin: 20px 0;
    text-align: center;
}

.filter-btn {
 display: inline-block;
    padding: 10px;
    margin: 5px;
    background: #007bff;
    color: white;
    border: none;
    cursor: pointer;
}

.filter-btn:hover {
    background: #0056b3;
}

.places {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.place-card {
    width: 300px;
    margin: 10px;
    padding: 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

.place-card img {
    width: 100%;
    border-radius: 5px;
    margin-bottom: 5px;
}

.learn-more {
    display: block;
    text-decoration: none;
    color: #007bff;
    font-weight: bold;
    margin-top: 10px;
}


.email-link {
    color: orange; /* Sets text color to orange */
    font-weight: bold;
    text-decoration: none; /* Removes underline */
}

.email-link:hover {
    text-decoration: underline; /* Adds underline on hover */
}

 
h1 {
    font-size: 50px;
    font-weight: bold;
    color: rgb(7, 89, 133); /* Dark blue tone */
}

p {
    font-size: 20px;
    color: rgb(7, 89, 133); /* Ensures consistency */
    font-weight: bold;
    text-align: justify;
}

.info-section {
    display: flex;
    justify-content: flex-start; /* Align sections to the left */
    padding: 40px;
    gap: 30px;
}

.box {
    width: 40%;
    padding: 25px;
    background-color: white;
    text-align: left;
    border-radius: 10px;
    margin-left: 50px; /* Move boxes left */
 box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2); /* Adds soft shadow */
}
 
h2 {
    text-align: justify;
    font-size: 30px;
    color: rgb(2, 132, 199);; /* Ensures consistency */       /* Sets heading color */
    font-weight: bold;
    text-align: left; /* Ensure headings are left-aligned */
}
.box p {
    font-size: 18px;
    color: black; /* Set text color to black */
    text-align: left;
}
/* Footer */
footer {
    font-family: 'Poppins', sans-serif;
    background-color: #001f3f;
    color: white;
    padding: 40px 20px;
    text-align: center;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-section {
    max-width: 300px;
}

.footer-section h2 {
    color: #FFD700;
}

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

.footer-section ul li {
    margin: 8px 0;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
}

.footer-section ul li a:hover {
    color: #FFD700;
}
