
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #333;
  padding: 10px 20px;
  color: white; 
  border-radius: 10px;
}
.nav_links a {
  text-decoration: none;
  color: white;
  margin-right:20px;
  font-size: 16px;
}
nav a:hover {
  color: lightblue;
}
.site_name {
  font-size: 20px;
  font-weight: bold;
  color: aqua;
}

footer {
  background-color: #333;   
  color: #fff;              
  text-align: center;       
  padding: 15px 0;        
  position: relative;       
  bottom: 0;
  width: 100%;              
  font-size: 14px; 
  border-radius: 10px;         
}

button{
    background-color: rgb(132, 132, 245);
    border-radius: 10px;
    color: white;
}

.contact-container {
  background: #fff;
  padding: 4rem;
  border-radius: 12px;
  box-shadow: 6px 12px 18px 6px rgba(0,0,0,0.1);
  max-width: 250px;
  width: 100%;
  height: auto;
  justify-content: center;
  margin-top: 20px;
}

.label{
  margin-top: 2rem;
}

.contact-container:hover{
  transform: scale(0.95);
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.image{
    width: 100%;
    height:60%;
    object-fit: cover;
    margin: 0 auto;
}

.container{
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero{
    height: 40vh;
     background: url("assets/travel.png") no-repeat center center/cover;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: white;
      padding: 20px;
      border-radius: 10px;
}

.travelarHeading {
  justify-content: center;
  text-align: center;
  padding: 4rem;
  margin-top: 20px;
  box-shadow: 6px 12px 18px 6px rgba(0,0,0,0.1);
}

.travelar{
  border-radius: 10px;
  box-shadow: 6px 12px 18px 6px rgba(0,0,0,0.1);
  height: auto;
}

.travelar:hover{
  transform: scale(0.95);
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.says{
  padding: 1rem;
}

.tab {
  padding: 20px;
  background: #f9f9f9;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-family: Arial, sans-serif;
  font-size: 80%;
  text-align: left;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  border-radius: 8px;
  overflow: hidden;
}

th, td {
  padding: 12px 15px;
  border-bottom: 1px solid #ddd;
}

th {
  background-color: #0077b6;
  color: #fff;
  font-weight: bold;
}

tr:nth-child(even) {
  background-color: #f2f2f2;
}

tr:hover {
  background-color: #e0f7fa;
  cursor: pointer;
}

td {
  color: #333;
}

.contact_section {
  padding: 30px;
  max-width: 600px;
  margin: auto;
  background: #8eb7f5;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  font-family: Arial, sans-serif;
}
.form_h2 {
  text-align: center;
  color: #0077b6;
  margin-bottom: 20px;
}
.cont_form {
  display: flex;
  flex-direction: column;
}

input, select, textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
  width: 100%;
  box-sizing: border-box;
}

input[type="radio"],
input[type="checkbox"] {
  width: auto;
  margin-right: 5px;
}

@media (max-width: 700px) {
  table{
    font-size: 45%;
  }
}
 



