@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Satisfy&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap");

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  /* font-family: Arial, sans-serif; */
}


body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}


/* popup */
#popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(184, 1, 1, 0.836);
  padding: 20px;
  border-radius: 10px;
  color: #fff;
  z-index: 1000;
}

.popup-content {
  text-align: center;
}

#contact-form input {
  width: 100%;
  margin-bottom: 10px;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

#contact-form button {
  background-color: #014b85;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
}

#contact-form button:hover {
  background-color: #01366d;
}

#close-popup {
  background-color: #fff;
  color: #000;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 5px;
}



/* =========== Nav Bar ========= */


/* desktop mode............/// */

.navbar input[type="checkbox"],
.navbar .hamburger-lines {
  display: none;
}

.navbar {
  box-shadow: 0px 5px 10px 0px #aaa;
  position: fixed;
  width: 100%;
  background: #fff;
  color: #000;
  opacity: 0.85;
  height: 70px;
  z-index: 12;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  height: 64px;
  align-items: center;
}

.menu-items {
  order: 2;
  display: flex;
}

.menu-items li {
  list-style: none;
  margin-left: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  margin-right: 50px;
}

.menu-items a {
  text-decoration: none;
  color: #444;
  font-weight: 500;
  transition: color 0.3s ease-in-out;
}

.menu-items a:hover {
  color: #061b96;
  transition: color 0.3s ease-in-out;
}


.logo img{
  height: auto;
  width: 120px;
  margin-left: 50px;
}


/* Banner */
.banner {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
              url("./img/chinese-park.jpg") center/cover no-repeat;
  height: 85vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.banner-heading h1 {
  font-size: 70px; /* Adjust as needed */
  color: #BE090B;
  font-family: Satisfy;
  margin: 0 0 2rem; /* Adjust spacing as needed */

  animation: slide 2s ease-in;
}

.banner-text-item {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 20px;
  border-radius: 5px;
}

.banner-text-item form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.banner-text-item input[type="text"],
.banner-text-item input[type="date"] {
  padding: 10px;
  margin: 5px;
  border-radius: 5px;
  border: none;
  font-size: 20px;
}

.whatsapp{
  margin-right: 10%;
  margin-top: -5.5%;
}


/* Responsive */ 
@media screen and (max-width: 768px) {
  /* .nav-bar {
      height: 70px;
  } */
  
  /* .logo img {
      width: 100px;
  } */


  
  /* .nav-links {
      display: none;
  } */
  
  /* .menu {
      display: block;
  } */


/* nav bar */
.navbar {
  opacity: 0.95;
}

.navbar-container input[type="checkbox"],
.navbar-container .hamburger-lines {
  display: block;
}


.navbar-container {
  display: block;
  position: relative;
  height: 64px;
}

.navbar-container input[type="checkbox"] {
  position: absolute;
  display: block;
  height: 32px;
  width: 30px;
  top: 20px;
  left: 20px;
  z-index: 5;
  opacity: 0;
}

.navbar-container .hamburger-lines {
  display: block;
  height: 23px;
  width: 35px;
  position: absolute;
  top: 17px;
  left: 20px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.navbar-container .hamburger-lines .line {
  display: block;
  height: 4px;
  width: 100%;
  border-radius: 10px;
  background: #333;
}

.navbar-container .hamburger-lines .line1 {
  transform-origin: 0% 0%;
  transition: transform 0.4s ease-in-out;
}

.navbar-container .hamburger-lines .line2 {
  transition: transform 0.2s ease-in-out;
}

.navbar-container .hamburger-lines .line3 {
  transform-origin: 0% 100%;
  transition: transform 0.4s ease-in-out;
}

.navbar .menu-items {
  padding-top: 100px;
  background: #fff;
  height: 100vh;
  max-width: 300px;
  transform: translate(-150%);
  display: flex;
  flex-direction: column;
  margin-left: -40px;
  padding-left: 50px;
  transition: transform 0.5s ease-in-out;
  box-shadow: 5px 0px 10px 0px #aaa;
}

.navbar .menu-items li {
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
  font-weight: 500;
}

.logo {
  position: absolute;
  top: 10px;
  right: 15px;
}

.navbar-container input[type="checkbox"]:checked ~ .menu-items {
  transform: translateX(0);
}

.navbar-container input[type="checkbox"]:checked ~ .hamburger-lines .line1 {
  transform: rotate(35deg);
}

.navbar-container input[type="checkbox"]:checked ~ .hamburger-lines .line2 {
  transform: scaleY(0);
}

.navbar-container input[type="checkbox"]:checked ~ .hamburger-lines .line3 {
  transform: rotate(-35deg);
}


  
  .banner-heading h1 {
      font-size: 2rem;
  }
  
  .banner {
      height: 65vh;
  }
  
  .banner-text-item form {
      flex-direction: column;
  }
  
  .banner-text-item input[type="text"],
  .banner-text-item input[type="date"],
.banner-text-item {
      width: 100%;
  }

  /* for checkbox */
  .about-text {
    font-size: 15px;
  }

  
  .whatsapp img{
    float: right;
    margin-top: 25px;
    margin-bottom: 5px;
  }

  .footer{
    font-size: 12px;
    margin: auto; 
  }


}




@keyframes slide {
  0% {
      transform: translateX(-100%);
Opacity: 0
  }
  50% {
      transform: translateX(0%);
Opacity:1
  }
}




/*===========================Services===========================*/

.ourservices {
  text-align: center;
  margin-bottom: 50px;
  text-align: center;
  font-size: 35px;
  font-family: Barlow Condensed;
  overflow: hidden;
}

.ourservices small {
  font-family: Roboto;
  color: #e61114;
  font-weight: bolder;
}

.services {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  overflow-x: auto; /* Enable horizontal scrolling if needed */
}

.service-item {
  flex: 0 0 auto; /* Prevent items from growing or shrinking */
  padding: 20px;
  border: lightcyan solid 1px;
  text-align: center;
  margin: 20px;
  transition: all 1s;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  max-width: 300px;
}

.service-item:hover {
  box-shadow: 3px 3px 20px rgb(0, 0, 0);
}

.service-item h2 {
  font-family: sans-serif;
  font-size: 20px;
  color: #0a0a0a;
  margin-top: 4%;
}

.service-item img {
  width: auto;
  height: 300px; /* Adjust height as needed for uniformity */
  max-width: 100%;
}



/*=============================Places===============================*/

.places {
  text-align: center;
  margin-bottom: 50px;
}

.places-text small {
  color: #e61114;
  font-size: 15px;
  font-weight: bolder;
}

.places-text h2 {
  font-family: Barlow Condensed;
  font-size: 55px;
  color: #191d34;
  letter-spacing: 1px;
  margin-bottom: 50px;
  
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Adjust min and max width as needed */
  grid-gap: 30px;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.card {
  border: 1px solid lightgray;
  box-shadow: 2px 2px 6px 0 rgba(0, 0, 0, 0.3);
  border-radius: 8px;
}

.card img {
  width: 100%;
  height: auto;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  object-fit: cover; /* Ensure images fit within their containers */
}

.cards .text {
  padding: 20px;
  font-family: Barlow Condensed;
  line-height: 1.5;
}

.cards .card-box {
  display: flex;
  flex-flow: row;
  background-color: #e61114;
  font-size: 18px;
  font-family: Roboto;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5px;
  color: #fff;
}

.card .city {
  padding: 20px;
  font-size: 28px;
}

.cards .time {
  flex: 2;
}

.cards .location {
  flex: 2;
  font-size: 20px;
}

.cards .cost {
  color: #4cafad;
  font-size: 28px;
}

.card .package-button a {
  background-color: #fff;
  border: 1px solid #014b85;
  text-decoration: none;
  border-radius: 5px;
  line-height: 100%;
  width: 100px;
  padding: 8px;
  text-align: center;
  margin-top: 20px; /* Adjust margin as needed */
  color: #014b85;
  font-weight: normal;
  font-size: 18px;
}

.card .package-button a:hover {
  background-color: #014b85;
  color: #fff;
}



/*=========================About Us=========================*/
.about {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px;
  background-color: lightgray;
  margin-top: 5%;
  margin-bottom: 10%;
}

.about-img {
  max-width: 100%; /* Ensures the image does not exceed its container */
  margin-bottom: 20px; /* Adjust spacing between image and text */
}

.about-img img {
  width: 100%;
  height: auto;
  max-height: 600px; /* Adjust maximum height of the image */
  box-shadow: 2px 2px 6px 0 rgba(0, 0, 0, 0.3);
}

.about-text {
  text-align: justify;
  max-width: 800px; /* Adjust maximum width of text */
}

.about-text small {
  color: #BE090B;
  font-size: 18px;
}

.about-text h2 {
  font-family: Barlow Condensed;
  font-size: 36px; /* Adjust font size for smaller screens */
  color: #191d34;
}

.about-text p {
  color: #506172;
  font-weight: bold;
  line-height: 1.9; /* Adjust line height for better readability */
  margin-bottom: 20px; /* Adjust spacing between paragraphs */
  font-size: 20px;
}

.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 20px;
}

.features label {
  margin: 0 10px;
  padding-bottom: 10px;
  color: #506172;
  font-weight: bold;
  font-family: Roboto;
  letter-spacing: 1px;
}

.about-text a {
  display: inline-block;
  background-color: #fff;
  border: 2px solid #014b85;
  text-decoration: none;
  border-radius: 5px;
  padding: 15px 30px;
  color: #014b85;
  font-weight: bold;
  font-size: 14px;
  margin-top: 20px; /* Adjust spacing between text and button */
}

.about-text a:hover {
  background-color: #014b85;
  color: #fff;
}



/*=========================Why are we the best?=========================*/
.whyarewethebest {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  padding: 80px;
  margin-top: -10%;
}


.whyarewethebest-right  {
  flex: 1;
  text-align: left;
  font-size: larger;
  font-family: Roboto;
  text-indent: 10%;
  /*width: 100px;*/
  display: flex;
  flex-flow: column wrap;
}

hr {
  border: none;
  border-top: 0.5px solid #333;
  height: 20px;
  
}


.whyarewethebest h2 {
  flex: 1;
  font-family: Barlow Condensed;
  font-size: 50px;
  text-decoration: none;
  color: #191d34;
  width: 450px;
}

.whyarewethebest-img{
  align-items: start;
}


.whyarewethebest a {
  background-color: #fff;
  border: 2px solid #014b85;
  text-decoration: none;
  border-radius: 5px;
  line-height: 100%;
  width: 180px;
  padding: 20px;
  text-align: center;
  margin-top: 50px;
  color: #014b85;
  font-weight: bolder;
  font-size: 14px;
}

.whyarewethebest a:hover {
  background-color: #014b85;
  color: #fff;
}

/*--===========contact us===============--*/
* {
  box-sizing: border-box;
}

/* Style inputs */
input[type=text], select, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical;
}

input[type=submit] {
  background-color: #bb070a;
  color: white;
  padding: 12px 20px;
  border: none;
  cursor: pointer;
}

input[type=submit]:hover {
  background-color: #ee2b2e;
}

/* Style the container/contact section */
.container {
  border-radius: 5px;
  background-color: #f2f2f2;
  padding: 10px;
}

/* Create two columns that float next to eachother */
.column {
  float: left;
  width: 50%;
  margin-top: 6px;
  padding: 20px;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column, input[type=submit] {
    width: 100%;
    margin-top: 0;
  }
}


/*--===========Social Media===============--*/
.socialmedia{
  justify-content: center;
  align-items: center;
display: flex;
margin-top: 2%;
}

.socialmedia .fa{
  padding: 20px;
  font-size: 20px;
  width: 60px;
  text-align: center;
  text-decoration: none;
  margin: 5px 10px;
  border-radius: 50%;
  margin-bottom: 2%;
}

.socialmedia .fa:hover {
  opacity: 0.7;
}

.socialmedia .fa-facebook {
background: #3B5998;
color: white;
}

.socialmedia .fa-twitter {
background: #55ACEE;
color: white;
}

.socialmedia .fa-linkedin {
background: #007bb5;
color: white;
}


.socialmedia .fa-instagram {
background: #125688;
color: white;
}


/* whatsapp chat  */
/* .whatsapp a, */
.whatsapp img{
    margin-top: 1%;
    margin-bottom: 5%;
    float: right;
}


/*===============Footer===================*/
.footer {
  background-image: url("img/footer.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 670px;
  position: relative;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
}

.footer::before {
  position: absolute;
  content: "";
  display: block;
  background-color: rgba(0, 0, 36, 0.8);
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.footer .links {
  position: relative;
  color: #fff;
  flex: 1;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
}

.links ul {
  list-style-type: none;
}

.links h3 {
  font-family: Barlow Condensed;
  font-weight: normal;
  font-size: 23px;
  margin-bottom: 15px;
  margin-top: 10px;
}

.links li {
  font-family: Roboto;
  cursor: pointer;
  padding: 15px 0;
}

.links li:hover {
  color: #ff0008;
}


.footer a{
  color: #fff;
  text-decoration: none;
  &:hover {
    color: #ff0008;
  }
}


#footer h4 {
  text-align: center;
  font-size: 1.1rem;
  padding: 2.1rem;
  font-weight: 500;
  color: #BE090B;
  background: white(65, 65, 65);
}

