

body {

font-family: Arial, sans-serif;
margin: 0;
background-color: #fff;
color: #333;
}
.top-bar {
    display:flex;
    gap: 20px;
    align-items: center;
}
.main-header {
    background-color: #006633;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}
.logo {
    font-size: 1.5rem;
    font-weight: bold;
}
.site-header ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
}
.site-header a {
  text-decoration: none;
  color: white;
  font-weight: bold;
}
.site-header a:hover {
  text-decoration: underline;
}


.main-nav {
    background-color: #006633;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}
.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: left;
    gap: 20px;
}
.main-nav a {
    text-decoration: none;
    color: white;
    font-weight: bold;
}
.main-nav a:hover {
    text-decoration: underline;
}
.search-content {
  background-color: #006633; 
  color: white;
  padding: 3rem;
  text-align: right; 
}
.search-content h1 {
  margin: 0 0 0.5rem 0;
  font-size: 2rem;
}
.search-content p {
  margin: 0 0 1.5rem 0;
  font-size: 1.1rem;
}
.search-bar {
  background-color: white;
  padding: 1.5rem;
  border-radius: 6px;
  color: #333;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 600px;
}
.search-label {
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #006633;
}
.form-row {
  display: flex;
  gap: 15px;
}
.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.form-group label {
  font-weight: bold;
  margin-bottom: 5px;
  color: #006633; 
}
.form-group input {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.search-bar button {
  padding: 12px 20px;
  background-color: #004d26;
  color: white;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
}
.search-bar button:hover {
  background-color: #00331a;
}
.trip-section {
  padding: 3rem 2rem;
  text-align: center;
}

.trip-header h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #006633;
}

.trip-header p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.browse-btn {
  background-color: #006633;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
}

.browse-btn:hover {
  background-color: #004d26;
}
.trip-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.category {
  text-align: center;
}

.category img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.category h3 {
  margin: 0.5rem 0;
  font-size: 1.2rem;
  color: #006633;
}

.category p {
  margin: 0;
  font-size: 0.95rem;
  color: #555;
}

.deals-section {
  padding: 3rem 2rem;
  text-align: center;
  background-color: #f9f9f9;
}

.deals-header h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #006633;
}

.deals-header p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 15px;
  font-weight: bold;
  margin-bottom: 2rem;
}

.deals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.deal-card {
  background: white;
  padding: 1.5rem;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.deal-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 1rem;
}

.deal-card h3 {
  margin: 0.5rem 0;
  color: #006633;
}

.deal-card p {
  font-size: 0.95rem;
  color: #555;
}

.price {
  display: block;
  font-weight: bold;
  margin: 1rem 0;
  color: #333;
}

.deal-btn {
  background-color: #006633;
  color: white;
  border: none;
  padding: 10px 18px;
  border-radius: 4px;
  cursor: pointer;
}

.deal-btn:hover {
  background-color: #004d26;
}

.values-section {
  display: flex;
  justify-content: space-around;
  padding: 3rem 2rem;
  background-color: #fff;
}

.value {
  max-width: 250px;
  text-align: center;
}

.value h3 {
  color: #006633;
  margin-bottom: 0.5rem;
}

.value p {
  font-size: 0.9rem;
  color: #555;
}
.tour-packages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 3rem 2rem;
}

.package-info {
  background-color: #006633;
  color: white;
  padding: 2rem;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.package-info h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.package-info p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.package-info button {
  background-color: white;
  color: #006633;
  border: none;
  padding: 10px 18px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
}

.package-info button:hover {
  background-color: #e0e0e0;
}

.package-card {
  background: white;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  overflow: hidden;
}

.package-card img {
  height: 200px;
  background-color: #e0e0e0; 
}

.package-text {
  padding: 1.5rem;
}

.package-text h3 {
  color: #006633;
  margin-bottom: 0.5rem;
}

.package-text p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
}
.special-offers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 3rem 2rem;
  background-color: #f9f9f9;
}

.offer-card {
  background: white;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.offer-img {
  height: 200px;
  background-color: #e0e0e0;
}

.offer-text {
  padding: 1.5rem;
  text-align: center;
}

.offer-text h2 {
  color: #006633;
  margin-bottom: 1rem;
}

.offer-text p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
}

.relocation-banner {
  background-color: #f9f9f9;
  padding: 3rem 2rem;
  text-align: center;
}

.relocation-banner h1 {
  color: #006633;
  margin-bottom: 1rem;
}

.relocation-banner p {
  max-width: 600px;
  margin: 0 auto 2rem auto;
  color: #555;
}

.steps {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.step {
  background: white;
  padding: 1rem;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  text-align: center;
  width: 200px;
}

.step span {
  display: block;
  font-size: 1.5rem;
  font-weight: bold;
  color: #006633;
  margin-bottom: 0.5rem;
}
.flights {
  padding: 3rem 2rem;
  text-align: center;
}

.flights h2 {
  color: #006633;
  margin-bottom: 2rem;
}

.flight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.flight-card {
  background: white;
  padding: 1rem;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  text-align: left;
}

.flight-card img {
  width: 100%;
  height: 120px;
  background-color: #e0e0e0;
  border-radius: 6px;
  margin-bottom: 1rem;
}

.flight-card h3 {
  color: #006633;
  margin-bottom: 0.5rem;
}

.airlines {
  padding: 3rem 2rem;
  text-align: center;
}

.airlines h2 {
  color: #006633;
  margin-bottom: 2rem;
}

.airline-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
}

.airline-card {
  background: white;
  padding: 1rem;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  text-align: center;
}

.airline-card img{
  width: 80px;
  height: 80px;
  background-color: #e0e0e0;
  border-radius: 50%;
  margin: 0 auto 1rem auto;
}

.airline-card h3 {
  color: #006633;
  margin-bottom: 0.5rem;
}

.packages {
  padding: 3rem 2rem;
  text-align: center;
}

.packages h2 {
  color: #006633;
  margin-bottom: 2rem;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.package-card {
  background: white;
  padding: 1.5rem;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.package-card h3 {
  color: #006633;
  margin-bottom: 0.5rem;
}

.package-card p {
  color: #555;
  font-size: 0.95rem;
}
.handpicked {
  padding: 3rem 2rem;
  text-align: center;
}

.handpicked h2 {
  color: #006633;
  margin-bottom: 2rem;
}

.places-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.place-card {
  background: white;
  padding: 1rem;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  text-align: left;
}

.place-card img {
  width: 100%;
  height: 150px;
  background-color: #e0e0e0;
  border-radius: 6px;
  margin-bottom: 1rem;
}

.place-card h3 {
  color: #006633;
  margin-bottom: 0.5rem;
}

.place-card p {
  margin: 0.3rem 0;
  color: #555;
}

.place-card span {
  font-weight: bold;
  color: #333;
}

.view-btn {
  margin-top: 2rem;
  padding: 10px 20px;
  background-color: #006633;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.view-btn:hover {
  background-color: #004d26;
}
.mission-banner {
  background-color: #f9f9f9;
  padding: 2rem;
  text-align: center;
}

.mission-banner h1 {
  color: #006633;
  margin-bottom: 1rem;
}

.mission-points p {
  margin: 0.3rem 0;
  color: #555;
}

.mission-nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 1rem;
  padding: 0;
}

.mission-nav li a {
  text-decoration: none;
  color: #006633;
  font-weight: bold;
}

.mission-nav li a:hover {
  text-decoration: underline;
}

.trip-packages {
  padding: 2rem;
}

.trip-packages h2 {
  text-align: center;
  color: #006633;
  margin-bottom: 1rem;
}

.packages-scroll {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scroll-snap-type: x mandatory;
}

.packages-scroll::-webkit-scrollbar {
  height: 8px;
}

.packages-scroll::-webkit-scrollbar-thumb {
  background: #006633;
  border-radius: 4px;
}

.trip-card {
  flex: 0 0 250px; 
  background: white;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  padding: 1rem;
  scroll-snap-align: start;
}

.trip-card img {
  width: 100%;
  height: 150px;
  background-color: #e0e0e0;
  border-radius: 6px;
  margin-bottom: 1rem;
}

.trip-card h3 {
  color: #006633;
  margin-bottom: 0.5rem;
}

.trip-card p {
  color: #555;
  margin-bottom: 0.5rem;
}

.trip-card span {
  font-weight: bold;
  color: #333;
}
.popular-destinations {
  padding: 2rem;
}

.popular-destinations h2 {
  text-align: center;
  color: #006633;
  margin-bottom: 1rem;
}

.destinations-scroll {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scroll-snap-type: x mandatory;
}

.destinations-scroll::-webkit-scrollbar {
  height: 8px;
}

.destinations-scroll::-webkit-scrollbar-thumb {
  background: #006633;
  border-radius: 4px;
}

.destination-card {
  flex: 0 0 200px;
  background: white;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  text-align: center;
  scroll-snap-align: start;
}

.destination-card img {
  width: 100%;
  height: 120px;
  background-color: #e0e0e0; 
  border-radius: 6px 6px 0 0;
}

.destination-card h3 {
  padding: 0.5rem;
  color: #006633;
}

.about-section {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 3rem 2rem;
  align-items: center;
}

.about-text {
  flex: 1;
  min-width: 280px;
}

.about-text h1 {
  color: #006633;
  margin-bottom: 1rem;
}

.about-text p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.purpose-btn {
  background-color: #cc0000;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
}

.purpose-btn:hover {
  background-color: #990000;
}

.about-card img {
  flex: 1;
  min-width: 280px;
  height: 300px;
  background-color: #e0e0e0;
  border-radius: 6px;
}

.featured-articles {
  padding: 2rem;
}

.featured-articles h2 {
  text-align: center;
  color: #006633;
  margin-bottom: 1rem;
}

.articles-scroll {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scroll-snap-type: x mandatory;
}

.articles-scroll::-webkit-scrollbar {
  height: 8px;
}

.articles-scroll::-webkit-scrollbar-thumb {
  background: #006633;
  border-radius: 4px;
}

.article-card {
  flex: 0 0 250px;
  background: white;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  padding: 1rem;
  scroll-snap-align: start;
}

.article-card h4 {
  color: #006633;
  margin-bottom: 0.5rem;
}

.article-card p {
  color: #555;
  font-size: 0.95rem;
}
.testimonials {
  background-color: #f9f9f9;
  padding: 3rem 2rem;
  text-align: center;
}
.testimonials {
  background-color: #f9f9f9; 
  padding: 3rem 2rem;
  text-align: center;
}

.testimonials h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #006633;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.testimonial {
  background: white;
  padding: 1.5rem;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.testimonial p {
  font-style: italic;
  margin-bottom: 1rem;
  color: #555;
}

.testimonial span {
  font-weight: bold;
  color: #006633;
}
.newsletter {
  background-color: #006633; 
  color: white;
  padding: 3rem 2rem;
  text-align: center;
}

.newsletter h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.newsletter p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.newsletter form {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.newsletter input[type="email"] {
  padding: 12px;
  border: none;
  border-radius: 4px;
  min-width: 250px;
  font-size: 1rem;
}

.newsletter button {
  padding: 12px 20px;
  background-color: #004d26;
  color: white;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
}

.newsletter button:hover {
  background-color: #00331a;
}
