/* Smooth scroll for better navigation */
html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
}
.container {
  width: 80%;
  margin: auto;
  overflow: hidden;
}

@media (max-width: 768px) {
  .container {
    width: 100%;
    padding: 10px;
  }
}

/*Header Section */

header {
  background: #333;
  color: #fff;
  padding: 20px 0;
  text-align: center;
}

header h1 {
  margin: 0;
}

nav ul {
  padding: 0;
  list-style: none;
}

nav ul li {
  display: inline;
  margin-right: 10px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

nav ul li a:hover {
  color: #feb47b;
  transition: color 0.3s ease-in-out;
}

.flip-horizontal {
  transform: scaleX(-1); /* Flips the icon horizontally */
}

/*  Home Section */

section#home {
  background-image: url("../Images/travel.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  color: #fff;
  height: 540px;
  text-align: center;
  padding-top: 120px;
}

#home h2 {
  font-size: 3em;
  margin: 0;
}

#home p {
  font-size: 1.2em;
  margin-top: 20px;
}

section {
  padding: 20px 0;
}
.h1 {
  text-align: center;
  color: #000000;
  border-bottom: 2px solid #3a3737;
}

h2 {
  text-align: center;
  color: #333;
  font-size: 26px;
}

.bk {
  font-family: cursive;
  letter-spacing: 0px;
  font-style: normal;
  font-size: 12px;
  line-height: 30px;
  text-align: left;
  color: #000;
  font-weight: 500;
}

/* Destination Section */

.Popular {
  font-size: 30px;
  color: #2d2727;
  text-align: center;
  margin: 10px 0;
  line-height: 1.6;
  font-family: "Roboto", sans-serif;
  font-weight: bold;
}

.destination-cards {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.card {
  background: #fff;
  padding: 15px;
  text-align: center;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  width: 30%;
}

.card img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}

.card h3 {
  margin: 15px 0;
}

section#destinations {
  background-color: #f5f5f5;
}

.d {
  background-image: url("../Images/kerala.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}

/* Adding a slight animation to cards */

.card {
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.3);
}

/* Services Section*/

#services {
  background: linear-gradient(135deg, #e0eafc, #cfdef3);
  padding: 60px 20px;
  text-align: center;
}

#services h2 {
  font-size: 36px;
  color: #072b45;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: bold;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}
#services h2:hover {
  color: #616464;
  text-decoration: underline;
  transform: scale(1.02);
  transition: color 0.3s ease-in-out;
}

#services ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#services ul li {
  font-size: 22px;
  color: #89500f;
  font-weight: bolder;
  background-color: #ffffff;
  margin: 15px auto;
  padding: 15px 25px;
  width: fit-content;
  border-radius: 8px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

#services ul li:hover {
  transform: scale(1.02); /* Slight zoom effect on hover */
  transition: transform 0.3s ease-in-out;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.service-card {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card i {
  font-size: 2rem;
  color: #ff7e5f;
  margin-bottom: 10px;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
}

/* Reviews and Ratings */

.ratings-section {
  padding: 50px 0;
  background-color: #ffffff;
  text-align: center;
}

.ratings-section {
  background: linear-gradient(
    to right,
    rgba(231, 214, 209, 0.8),
    rgba(176, 148, 139, 0.8)
  );
}

.rating-header {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.reviewer-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 10px;
  object-fit: cover;
}

.ratings-section h2 {
  color: #2d2727;
  margin-bottom: 20px;
  font-family: "Roboto", sans-serif;
  font-weight: bold;
}

.rating-card {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: inline-block;
  margin: 20px;
  padding: 20px;
  width: 250px;
}

.rating-card:hover {
  transform: scale(1.02); /* Slight zoom effect on hover */
  transition: transform 0.3s ease-in-out;
}

.rating-stars {
  color: #feb47b;
  font-size: 1.5em;
}

.review-text {
  font-size: 1.1em;
  margin-top: 10px;
  color: #333;
}

.review-author {
  margin-top: 15px;
  color: #666;
  font-style: italic;
}

/* Styling for the contact section */

.c {
  background-image: url("../Images/back.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.h {
  color: #0b735e;
  font-size: 26px;
  text-align: center;
  margin-bottom: 15px;
  border-bottom: 2px solid #3a3737;
  padding-bottom: 8px;
  font-family: "Roboto", sans-serif;
}

.p {
  font-size: 18px;
  color: #5b0505;
  text-align: center;
  margin: 10px 0;
  line-height: 1.6;
  font-family: "Roboto", sans-serif;
  font-weight: bold;
}
/* Email and Phone styling */
.p1 {
  color: #1b77a5;
  text-decoration: none;
  font-weight: bold;
  text-align: center;
  text-size-adjust: 1opx;
}
.p1:hover {
  color: #202526;
  text-decoration: underline;
  transition: color 0.3s ease-in-out;
}

.container1 {
  background-color: #ffffff;
  padding: 20px;
  margin: 0 auto;
  width: 70%;
  max-width: 600px;
  border-radius: 10px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
}

.container1:hover {
  transform: scale(1.02);
  transition: transform 0.3s ease-in-out;
}

/* Responsive design for smaller screens */

@media (max-width: 600px) {
  .h {
    font-size: 22px;
  }

  .p {
    font-size: 16px;
  }

  .container1 {
    width: 90%;
  }
}

footer {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 10px 0;
  margin-top: 20px;
}

/* Footer style with gradient */
footer {
  background: linear-gradient(135deg, #333 0%, #555 100%);
}

@media only screen and (max-width: 768px) {
  [class*="col-"] {
    width: 100%;
  }
}

.social-media ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  margin: 20px 0;
}
.fa-facebook {
  font-family: "Helvetica", "Arial", sans-serif;
}
.fa-twitter {
  font-family: "Segoe UI", sans-serif;
}
.fa-instagram {
  font-family: "Proxima Nova", sans-serif;
}
.fa-linkedin {
  font-family: "Myriad Pro", sans-serif;
}

.social-media ul li {
  margin: 0 20px;
}

.social-media ul li a {
  color: #fff;
  font-size: 15px;
  transition: color 0.3s ease;
}

.social-media ul li a:hover {
  color: #feb47b;
}
