/* GENERAL STYLES */

*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body{
	font-family: Arial,sans-serif;
	line-height: 1.6;
	background: #ffffff;
	color: #333;
}

a{
	text-decoration: none;
}
.footer {
  background:black;
  color:white;
  padding:40px 20px 20px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
  gap:30px;
}

.footer-section h3 {
  font-size:18px;
  margin-bottom:15px;
}

.footer-section p,
.footer-section li {
  font-size:14px;
  margin-bottom:10px;
}

.footer-section ul {
  list-style:none;
  padding:0;
}

.footer-section a {
  color:white;
  text-decoration:none;
}

.footer-section a:hover {
  text-decoration:underline;
}

.social-icons a {
  margin-right:10px;
}

.footer-bottom {
  text-align:center;
  margin-top:20px;
  border-top:1px solid rgba(255,255,255,0.3);
  padding-top:10px;
  font-size:14px;
}

/* Responsive */
@media screen and (max-width:768px){
  .footer-container{
    flex-direction:column;
    align-items:center;
    text-align:center;
    gap:20px;
  }
  .social-icons a{
    margin-right:15px;
  }
}

/* Navbar Styles */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background: black;
  color: white;
  position: relative;
  z-index: 1000;
}

.navbar .logo {
  font-size: 24px;
  font-weight: bold;
}

.nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

/* Hamburger */
.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
}
.checkbox{
	display: none;
	font-size: 28px;
	cursor: pointer;
}

/* Responsive */
@media screen and (max-width:768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #1e73be;
    position: absolute;
    top: 60px;
    left: 0;
    padding: 15px 0;
  }
  #menu-toggle:checked + .hamburger + .nav-links {
    display: flex;
  }
  .hamburger {
    display: block;
  }
  .nav-links li {
    padding: 10px 0;
    text-align: center;
  }
}

/*HEADER/ HOME SECTION*/

header{
	background: url(images/banner.webp) no-repeat center/cover;
	height: 100vh; /* full viewport height */
	background-size: cover; /* ensures full coverage */
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
	color: white;/* Navbar Styles */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background: #1e73be;
  color: white;
  position: relative;
  z-index: 1000;
}

.navbar .logo {
  font-size: 24px;
  font-weight: bold;
}

.nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

/* Hamburger */
.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* Responsive */
@media screen and (max-width:768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #1e73be;
    position: absolute;
    top: 60px;
    left: 0;
    padding: 15px 0;
  }
  #menu-toggle:checked + .hamburger + .nav-links {
    display: flex;
  }
  .hamburger {
    display: block;
  }
  .nav-links li {
    padding: 10px 0;
    text-align: center;
  }
}

	padding: 20px;
	position: relative;
	font-weight: bold;
}

header::before{
	content:'';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.35); /* keeps text readale */
}

header h1{
	font-size: 80px;
}
header p{
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 20px;
}
header .btn{
	position: relative;
	z-index: 1;
}

.footer{
	text-align: center;
	color:grey;
	margin-top: 35px;
}

.trip {
	padding-left: 45px;
	padding-right: 45px;
	padding-top: 15px;
	padding-bottom: 15px;
	font-weight: bold;
	border:none;
	display: inline-block;
	color: grey;
	cursor: pointer;
	transition: 1s;
}

.trip:hover{
	color: white;
	background: grey;
}
@media(max-width: 700px){
	header{
		height: :70vh; /* smaller height on mobile */
		padding: 15px;
	}

	header h1 {
		font-size: 28px;
	}

	header p {
		font-size: 14px;
	}
}

/*-- Default: desktop view */
.desktop-text{
	display: block;
}

.mobile-text{
	display: none;
}

/*-- Mobile view */
@media(max-width: 700px){
	.desktop-text{
		display: none;
	}
	.mobile-text{
		display: block;
	}
}




/*SERVICES SECTION*/
.service,
.service-preview {
	background: url(images/services.webp) no-repeat center/cover;
	background-size: cover;
	position: relative;
	color: white;
	padding:  60px 20px;
	
}
.service::before,
.service-preview::before{
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top:0;
	left: 0;
	background: rgba(0, 0, 0, 0.35);
}

.service h2,
.service-preview h2,
.service-box {
	position: relative;
	z-index: 1;
}

.service-box{
	background: rgba(255, 255, 255, 0.85);
	color: #333;
	max-width: 350px;
	margin: 15px auto;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	background: lightblue;

}

.service-box h3 {
	font-size: 22px;
	margin-bottom: 10px;
}

.service-box p {
	font-size: 16px;
}
.Our {
	text-align: center;
	font-size: 40px;
}
.study {
	text-align: center;
	font-weight: bold;
	font-size: 35px;
}
.text {
	text-align: center;
	font-size: 25px;
}
/*-- Default: desktop view */
.desktop-text{
	display: block;
}

.mobile-text{
	display: none;
}

/*-- Mobile view */
@media(max-width: 700px){
	.desktop-text{
		display: none;
	}
	.mobile-text{
		display: block;
	}
}
/* ABOUT PAGE HERO */
.about-hero{
	background-image: url(images/about.webp);
	background-size: cover;
	background-position: center;
	height: 300px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: white;
	font-size: 2.2rem;
	text-align: center;
}
/* ABOUT CONTENT LAYOUT */
.about-content{
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 60px;
	gap: 40px;
}

.about-text{
	flex: 1.2;
	font-size: 1.1rem;
	line-height: 1.8rem;
}

.about-text h2 {
	font-size: 2rem;
	margin-bottom: 15px;
}

.about-img {
	flex: 1;
	text-align: right;
}

.about-img img {
	width: 300px;
	border-radius: 8px;
	object-fit: cover;
}



/* MOBILE VIEW */

@media (max-width: 850px) {
	.about-content {
		flex-direction: column;
		text-align: center;
		padding: 30px;
	}
	*{
		margin-right:0
			}
	.about-img {
		text-align: center;
		margin-top: 20px;
	}

	.about-img img {
		width: 90%;
	}
}
/* CONTACT HERO */

.contact-hero{
	background-image: url(images/contact.webp);
	background-size: cover;
	background-position: center;
	height: 60vh;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}

.contact-overlay {
	background: rgba(0, 0, 0, 0.5);
	padding: 40px;
	text-align: center;
	color: white;
	width: 100%;
}

/* CONTACT FORM */
.contact-form-section {
	padding: 60px 10%;
	background: #f9f9f9;
}

.contact-form-section h2 {
	text-align: center;
	margin-bottom: 20px;
}

.contact-form-section form {
	max-width: 600px;
	margin: auto;
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.contact-form-section input,
.contact-form-section textarea{
	padding: 12px;
	border: 1px solid #bbb;
	border-radius: 5px;
}

.contact-form-section button {
	padding: 12px;
	border: none;
	background: black;
	color: white;
	cursor: pointer;
	border-radius: 5px;
}


.destinations-hero {
  background: url("images/services.webp") no-repeat center/cover;
  height: 50vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
}

.destinations-hero h1 {
  font-size: 3rem;
  font-weight: 700;
}

.destinations-section {
  padding: 60px 8%;
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.destination-box {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  transition: .3s;
}

.destination-box:hover {
  transform: scale(1.03);
}

.destination-box img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.destination-info {
  padding: 20px;
  text-align: center;
}

@media (max-width: 900px) {
  .destinations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .destinations-grid {
    grid-template-columns: 1fr;
  }
  .destinations-hero h1 {
    font-size: 2rem;
  }
}

.testimonials {
  background:#f4f4f4;
  padding:60px 20px;
  text-align:center;
}
.testimonials h2 {
  font-size:32px;
  margin-bottom:40px;
  color:#1e73be;
}
.testimonial-cards {
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:25px;
}
.testimonial-card {
  background:#fff;
  padding:25px 20px;
  border-radius:12px;
  box-shadow:0 4px 12px rgba(0,0,0,0.1);
  flex:1 1 250px;
  max-width:300px;
  text-align:left;
}
.testimonial-card p {
  font-style:italic;
  margin-bottom:15px;
}
.testimonial-card span {
  font-weight:bold;
  color:#333;
}
@media screen and (max-width:768px){
  .testimonial-cards {
    flex-direction:column;
    align-items:center;
  }
}























