* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #f4f7fa;
  color: #1c1c1c;
  padding: 2rem
}

.navbar {
  margin-top: -30px;
margin-left: -35px;
margin-right: -35px;
display: flex;
justify-content: space-between;
align-items: center;
padding: 18px 50px;
background-color: #ffffff;
border-radius: 0 0 20px 20px;
box-shadow: 0 5px 12px rgba(0, 0, 0, 0.05);
position: sticky;
top: 0;
z-index: 999;
}

.navbar-logo a {
 font-size: 1.8rem;
 font-weight: bold;
 color: #008080; /* Teal color from image */
 text-decoration: none;
}

.navbar-links {
list-style: none;
display: flex;
gap: 15px;
margin-left: 40%;
}

.navbar-links li {
 margin-left: 25px; /* Spacing between links */

}

.navbar-links li a {
 text-decoration: none;
 color: #333; /* Dark grey for links */
 font-weight: 500;
 padding: 5px 0;
}

.navbar-links li a:hover {
 color: #008080; /* Teal on hover */
}

.navbar-buttons .btn-primary {
 background-color: #00b8d4; /* Blue/Teal button like in image */
 color: white;
 border: none;
 padding: 10px 20px;
 border-radius: 5px;
 cursor: pointer;
 text-decoration: none;
 font-size: 1rem;
}

.navbar-buttons .btn-primary:hover {
 background-color: #0097a7; /* Darker shade on hover */
}

.navbar-burger {
 display: none; /* Hidden by default on desktop */
 font-size: 2rem;
 color: #333;
 cursor: pointer;
}
.btn-outline {
  border: 2px solid #1c80d6;
  background: transparent;
  color: #1c80d6;

}
a{
  text-decoration: none;
  color: black;
}
.btn-outline:hover {
  background-color: #1c80d6;
  color: #fff;
}

.btn-primary {
  background: linear-gradient(to right, #1c80d6, #17c3b2);
  color: white;
  box-shadow: 0 4px 10px rgba(23, 195, 178, 0.3);
}

/* Hero Section */
.hero {
  background-image: url('bg.jpeg');
  background-size: cover;
  background-position: center;
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 0 40px 40px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}

.hero-content {
  color: white;
  text-align: center;
  z-index: 1;
  max-width: 700px;
}

.hero h1 {
  font-size: 2.6rem;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.search-form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.search-form input,
.search-form button {
  padding: 10px 14px;
  border-radius: 6px;
  border: none;
  font-size: 1rem;
  outline: none;
}

.search-form input {
  background-color: #ffffff;
  min-width: 140px;
}

.search-form button {
  background: linear-gradient(to right, #1c80d6, #17c3b2);
  color: white;
  cursor: pointer;
  font-weight: bold;
}

.destinations {
  padding: 60px 40px;
}

.destinations h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #1c1c1c;
  text-align: center;
}

.dest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}

.dest-card {
  background-size: cover;
  background-position: center;
  height: 160px;
  border-radius: 16px;
  color: white;
  font-weight: 600;
  font-size: 1.2rem;
  display: flex;
  align-items: flex-end;
  padding: 12px;
  text-shadow: 1px 1px 6px rgba(0,0,0,0.7);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.dest-card:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
.container {
  padding: 2rem;
  max-width: 1200px;
  margin: auto;
}
.hero-energy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 4rem;
}
.hero-text {
  max-width: 50%;
}
.hero-text h1 {
  font-size: 2.5rem;
}
.highlight {
  color: #1c80d6;
  font-weight: bold;
}

.benefit {
  background: white;
  color: black;
  margin: 2rem 0;
  padding: 1.5rem;
  border-radius: 8px;
  max-width: 400px;
}
.image-section {
  width: 100%;
  height: 300px;
  background: url('https://dynamic-media-cdn.tripadvisor.com/media/photo-o/09/db/7e/5b/henann-garden-grand-and.jpg?w=1200&h=-1&s=1') center/cover;
  border-radius: 1rem;
  margin-bottom: 2rem;
}
.team-section {
  background: #e0f7f5;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  border-radius: 1rem;
  margin-bottom: 2rem;
}
.team-section img {
  border-radius: 50%;
  width: 60px;
  height: 60px;
  margin-right: 0.5rem;
}
.mission {
  background: #1c1c1c;
  color: white;
  padding: 2rem;
  border-radius: 1rem;
}
.mission h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.mission a {
  color: #d4ff00;
  text-decoration: none;
}
.get-in-touch {
  background-color: #f9f9f9;
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
}

.contact-header {
  text-align: center;
  background-color: #0b1f35;
  color: white;
  padding: 40px 20px;
  border-radius: 10px 10px 0 0;
}

.contact-header h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.contact-header p {
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

.contact-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  background-color: #fff;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  overflow: hidden;
}

.contact-card {
  flex: 1;
  padding: 40px 30px;
  text-align: center;
}

.contact-card .icon {
  font-size: 2rem;
  margin-bottom: 15px;
}

.contact-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.contact-card p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 15px;
}

.contact-card a {
  display: inline-block;
  color: #1a73e8;
  text-decoration: none;
  margin-bottom: 5px;
}

.support-btn {
  padding: 10px 20px;
  background-color: #fa5d4e;
  color: white;
  border: none;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
}

.divider {
  width: 2px;
  background-color: #f2f2f2;
}
.social-footer {
  text-align: center;
  padding: 30px 20px;
  background-color: #0b1f35;
  color: white;
}

.social-footer p {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-icons a {
  font-size: 1.2rem;
  color: white;
  background-color: #1a1a1a;
  padding: 12px;
  border-radius: 50%;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.social-icons a:hover {
  background-color: #fa5d4e;
}

.containers {
background-color: #fff;
border-radius: 150px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.35);
position: relative;
overflow: hidden;
width: 768px;
max-width: 100%;
min-height: 480px;
margin-top: -40%;
margin-left: -20%;
}

.containers p {
font-size: 14px;
line-height: 20px;
letter-spacing: 0.3px;
margin: 20px 0;
}


.containers span {
font-size: 12px;
}

.containers a {
color: #333;
font-size: 13px;
text-decoration: none;
margin: 15px 0 10px;
}
.containers button {
background-color: #1c80d6;
color: #fff;
padding: 10px 45px;
border: 1px solid transparent;
border-radius: 8px;
font-weight: 600;
letter-spacing: 0.5px;
text-transform: uppercase;
margin-top: 10px;
cursor: pointer;
}

.containers button.hidden {
background-color: transparent;
border-color: #fff;
}

.containers form {
background-color: #fff;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
padding: 0 40px;
height: 100%;
}

.containers input {
background-color: #eee;
border: none;
margin: 8px 0;
padding: 10px 15px;
font-size: 13px;
border-radius: 8px;
width: 100%;
outline: none;
}

.sign-up, .sign-in {
position: absolute;
top: 0;
height: 100%;
transition: all 0.6s ease-in-out;
overflow: hidden;
}

.sign-in {
left: 0;
width: 50%;
z-index: 2;
}

.containers.active .sign-in {
transform: translateX(100%);
}

.sign-up {
left: 0;
width: 50%;
z-index: 1;
opacity: 0;
}

.containers.active .sign-up {
transform: translateX(100%);
opacity: 1;
z-index: 5;
animation: move 0.6s;
}

@keyframes move {
0%, 49.99%{
  opacity: 0;
  z-index: 1;
}
 50%, 100%{
  opacity: 1;
  z-index: 5;
}
}

.icons {
margin: 20px 0;
}

.icons a {
border: 1px solid #ccc;
border-radius: 20%;
display: inline-flex;
justify-content: center;
align-items: center;
margin: 0 3px;
width: 40px;
height: 40px;
}

.toogle-container {
position: absolute;
top: 0;
left: 50%;
width: 50%;
height: 100%;
overflow: hidden;
border-radius: 150px;
z-index: 1000;
transition: all 0.6s ease-in-out;
}

.containers.active .toogle-container {
transform: translateX(-100%);
border-radius: 150px;
}

.toogle {
background-color: #a82d2d;
height: 100%;
background: linear-gradient(to right, #3e82be, #1c80d6);
color: #fff;
position: relative;
left: -100%;
width: 200%;
transform: translateX(0);
transition: all 0.6s ease-in-out;
}

.containers.active .toogle {
transform: translateX(50%);
}

.toogle-panel {
position: absolute;
width: 50%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
padding: 0 30px;
text-align: center;
top: 0;
transform: translateX(0);
transition: all 0.6s ease-in-out;
}

.toogle-left {
transform: translateX(-200%);
}

.containers.active .toogle-left {
transform: translateX(0);
}

.toogle-right {
right: 0;
transform: translateX(0);
}

.containers.active .toogle-right {
transform: translateX(200%);
}
.conti{
width: 130%;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
height: 200vh;
margin-left: -20%;
overflow: hidden;
}
.imager{
display: flex;
width: 105%;
height: 50%;
margin-left: 50%;
margin-top: -120%;
overflow: hidden;
}
.container2 {
display: flex;
flex-direction: row-reverse; /* puts sidebar on the right */
padding: 20px;
gap: 20px;
}

.sidebar {
width: 250px;
background: #fff;
padding: 20px;
border-radius: 12px;
box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.sidebar h3 {
margin-top: 20px;
font-size: 16px;
}

.sidebar label {
display: block;
margin: 10px 0;
}

.sidebar input[type="text"],
.sidebar input[type="date"] {
width: 100%;
padding: 8px;
margin-top: 5px;
border: 1px solid #ccc;
border-radius: 8px;
}

.sidebar .search-btn {
margin-top: 15px;
width: 100%;
padding: 10px;
border: none;
background: #0066ff;
color: white;
border-radius: 8px;
cursor: pointer;
font-weight: bold;
}

.main {
flex: 1;
}

.main h2 {
margin-bottom: 20px;
}

.hotel-card {
display: flex;
background: #fff;
border-radius: 12px;
margin-bottom: 20px;
padding: 15px;
gap: 15px;
box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.hotel-card img {
width: 160px;
height: 120px;
object-fit: cover;
border-radius: 8px;
}

.hotel-info {
flex: 1;
}

.hotel-info h3 {
margin: 0 0 10px;
}

.tags {
margin: 10px 0;
}

.tag {
display: inline-block;
background: #eee;
padding: 4px 10px;
border-radius: 8px;
margin-right: 5px;
font-size: 12px;
}

.rating {
color: green;
font-weight: bold;
}

.price-section {
text-align: right;
min-width: 100px;
}

.price {
font-size: 18px;
font-weight: bold;
}

.book-btn {
background: #0066ff;
color: #fff;
border: none;
padding: 8px 12px;
border-radius: 8px;
margin-top: 10px;
cursor: pointer;
}

.container6 {
max-width: 1000px;
margin: 30px auto;
display: flex;
gap: 20px;
padding: 20px;
background-color: white;
box-shadow: 0 0 10px rgba(0,0,0,0.1);
margin-left: 1%;
}

.details, .form0 {
flex: 1;
}

.details h2 {
margin-bottom: 10px;
}

.details p {
margin: 5px 0;
}

.price-box {
background-color: #eef6ff;
padding: 10px;
margin-top: 10px;
border-left: 4px solid #0071c2;
}

.form0 input, .form0 select {
width: 100%;
padding: 10px;
margin: 10px 0;
box-sizing: border-box;
border: 1px solid #ccc;
border-radius: 4px;
}

.form0 label {
font-weight: bold;
}

.form0 .radio-group {
margin: 10px 0;

}

.form0 .radio-group label {
font-weight: normal;
margin-right: 15px;
margin-top: 20px;
}

.form0 button {
background-color: #0071c2;
color: white;
padding: 12px;
border: none;
width: 100%;
font-size: 16px;
border-radius: 4px;
cursor: pointer;
}

.form0 button:hover {
background-color: #005fa3;
}

/* Sidebar */
.sidebar {
  width: 250px;
  background: #f9f9f9;
  padding: 20px;
  border-right: 1px solid #ddd;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 30px;
  color: #00838F;
}

.menu li {
  list-style: none;
  margin: 20px 0;
  cursor: pointer;
}

/* Profile Main */
.profile {
  flex: 1;
  overflow-y: auto;
  background: #f0f2f5;
}

.header {
  position: relative;
  height: 250px;
}

.header-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-pic {
  position: absolute;
  bottom: -50px;
  left: 30px;
  border: 5px solid #fff;
  border-radius: 50%;
  overflow: hidden;
  width: 100px;
  height: 100px;
  background: #eee;
}

.profile-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}

.connect-btn {
  position: absolute;
  bottom: -20px;
  right: 30px;
}

.connect-btn button {
  background: #FFB300;
  border: none;
  padding: 10px 20px;
  border-radius: 20px;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
}

/* Form */
.details {
  margin: 80px 30px 30px;
  background: #fff;
  padding: 30px;
  border-radius: 10px;
}

h2 {
  margin-bottom: 20px;
}

label {
  display: block;
  margin-bottom: 15px;
  font-size: 14px;
}

input, select {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.input-btn {
  display: flex;
}

.input-btn input {
  flex: 1;
}

.change-btn {
  background: #FFB300;
  border: none;
  padding: 10px 15px;
  border-radius: 8px;
  margin-left: 5px;
  color: white;
  cursor: pointer;
}

.form-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 30px;
}

.cancel-btn, .save-btn {
  background: none;
  border: 1px solid #00838F;
  padding: 10px 20px;
  margin-left: 10px;
  border-radius: 20px;
  font-weight: bold;
  cursor: pointer;
}

.save-btn {
  background: #00838F;
  color: white;
} .burger {
  display: none;
  font-size: 2rem;
  cursor: pointer;
}
header {
background-color: #fff; /* Or your desired header background */
padding: 0 20px; /* Horizontal padding */
border-bottom: 1px solid #eee;
position: sticky; /* Makes navbar stick to top */
top: 0;
z-index: 1000; /* Ensures navbar is above other page content */
}

@media (max-width: 768px) {
.navbar-links {
    display: none;
}
.navbar-buttons {
    display: none;
}

.navbar-burger {
    display: block;
    color: #008080; /* Or your 'X' color */
    z-index: 1001;
}

.navbar-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 60px; /* Adjust to your navbar's actual height */
    left: 0;
    width: 100%;
    background-color: #222222; /* Dark grey background from your image */
    padding: 0;
    margin: 0;
    border-top: 1px solid #444444;
    z-index: 1000;
}

.navbar-links.active li {
    margin: 0;
    width: 100%;
    border-bottom: 1px solid #444444; /* Separator line */
    box-sizing: border-box;
    text-align: center;
}

/* This will now correctly apply to the <li> containing the Login button */
.navbar-links.active li:last-child {
    border-bottom: none;
}

.navbar-links.active li a:not(.btn-primary) {
    color: white;
    padding: 15px 20px;
    display: block;
    text-decoration: none;
}

.navbar-links.active li a:not(.btn-primary):hover {
    background-color: #333333;
    color: #00b8d4;
}

/* Styling for the <li> that CONTAINS the Login button (will be the last li) */
.navbar-links.active li.menu-button-item {
    padding: 15px 20px; /* Vertical padding around the button */
    /* text-align: center; is inherited */
}

/* Style for the Login button itself when it's inside an <li> */
.navbar-links.active li .btn-primary {
    display: inline-block;
    background-color: #00b8d4; /* Teal button color */
    color: white;
    border: none;
    padding: 10px 28px; /* Adjust to match button visual */
    border-radius: 5px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
}

.navbar-links.active li .btn-primary:hover {
    background-color: #0097a7;
}

.hero {
height: 300px;
text-align: center;
}

.hero-content {
padding: 0 20px;
}

.hero h1 {
font-size: 1.8rem;
}

.hero p {
font-size: 0.9rem;
}

.hero-energy,
.team-section,
.container2 {
flex-direction: column;
align-items: center;
}

.sidebar,
.main {
width: 100%;
}

.hotel-card {
flex-direction: column;
align-items: center;
}

.hotel-card img {
width: 100%;
height: auto;
}

}

@media (max-width: 480px) {
body {
padding: 1rem;
}

.hero h1 {
font-size: 1.5rem;
}

.hero p {
font-size: 0.85rem;
}

.search-form input {
min-width: 100px;
font-size: 0.9rem;
}

.containers {
width: 100%;
border-radius: 0;
}

.toogle-container {
display: none; /* simplify layout for small screens */
}

.form0 input,
.form0 select {
font-size: 14px;
}

.container6 {
padding: 10px;
}

.dest-card {
font-size: 1rem;
height: 140px;
}
}