/* Start main */
:root {
  --main-color: #2196f3;
  --alt-color: #03a9f4;
}
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  margin: 0;
  padding: 0;
}

/* End main */

/* Start Container */
.container {
  padding-left: 15px;
  padding-right: 15px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}

@media (min-width: 992px) {
  .cointainer {
    width: 970px;
  }
}

@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}
/* End Container */
/* Start Componant */
.btn-shape {
  background-color: var(--alt-color);
  padding: 10px 20px;
  border-radius: 12px;
  color: black;
}

ul li {
  list-style: none;
}

a {
  text-decoration: none;
}
/* End Componant */
/* Start Header */
header {
  display: block;
  box-shadow: 0 0 10px #ddd;
  background-color: white;
  position: fixed;
  width: 100%;
  top: 0;
  height: 110px;
  z-index: 5;
}
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header img {
  max-width: 100%;
  width: 120px;
}

.header nav {
  width: 400px;
}

.header ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-right: 15px;
}

.header ul li {
  cursor: pointer;
}

.header ul li a {
  color: black;
  font-weight: 500;
}

.header ul li:hover a {
  color: var(--main-color);
}

.header ul li:hover:last-child a {
  color: white;
}

/* Start Hamburger btn */

.header .hamb-btn {
  font-size: 25px;
  margin-right: 15px;
  cursor: pointer;
  display: none;
}
@media (max-width: 768px) {
  .header nav {
    display: none;
  }
  .header .hamb-btn {
    display: block;
  }
}
.hamb-list {
  text-align: center;
  background-color: #eeeeeee4;
  z-index: 2;
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
}
.hamb-list a {
  display: block;
  padding: 20px 10px;
  cursor: pointer;
  color: black;
}

.hamb-list a:not(:last-child) {
  border-bottom: 1px solid #7777775e;
}
.hamb-list a.btn-shape {
  border-radius: 0px;
}

.hamb-list a:hover {
  color: white;
  background-color: #03a8f4b9;
  letter-spacing: 1.5px;
}

.toggle {
  display: none;
}

/* End Hamburger btn */
/* End Header */
/* Start Home */
.sec-one {
  background-image: url(../Imges/Home.JPG);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
}
.sec-one .sec {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80vh;
}
.sec-one .content {
  display: flex;
  align-items: center;
  flex-direction: column;
  font-family: "Cairo", sans-serif;
  padding: 20px 20px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  background-color: #eeeeee7e;
  border-radius: 12px;
  width: 100%;
  text-align: right;
}

.sec-one .content h3 {
  margin: 0;
  font-size: 35px;
}

.sec-one .content p {
  font-size: 20px;
  font-weight: bold;
}

.sec-one .content a {
  font-weight: 600;
}
.sec-one .content a:hover {
  color: white;
}

@media (max-width: 768px) {
  .sec-one .content h3 {
    font-size: 22px;
  }
  .sec-one .content p {
    font-size: 16px;
  }
}

@media (max-width: 321px) {
  .sec-one .content h3 {
    font-size: 18px;
  }
  .sec-one .content p {
    font-size: 14px;
  }
}
/* End Home */
/* Start Services */
.sec-two {
  margin: 15px auto;
}
.services {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
  padding: 30px;
  transition: 0.3s;
}
.services div {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  background-color: #eee;
  border-radius: 12px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  padding: 25px 0;
}
.services div:first-child i {
  font-size: 80px;
  color: #4caf50;
}
.services div:nth-child(2) i {
  font-size: 100px;
  color: var(--main-color);
}
.services div:last-child i {
  font-size: 100px;
  color: #e5252a;
}

.services div span {
  margin-top: 10px;
  padding: 10px 5px;
  font-family: "Cairo", sans-serif;
  font-size: 20px;
}

.services div:hover {
  transform: scale(1.1);
  transition: transform 0.3s;
}
/* End Services */
/* Start Trips */

.sec-three .trips {
  margin-top: 20px;
}

.sec-three h1 {
  margin: 0;
  text-align: center;
}

.sec-three .imgs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
  padding: 30px;
  transition: 0.5s;
}

.sec-three .imgs img {
  max-width: 100%;
  border: 1px solid #777;
  border-radius: 12px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.sec-three .imgs img:hover {
  transform: scale(1.1);
  transition: transform 0.3s;
}
/* End Trips */
/* Start Contact Us */
.sec-four h1 {
  text-align: center;
}

.contact {
  margin: 20px auto;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.contact .about {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-direction: row;
}

.contact .about a {
  font-size: 25px;
  padding: 20px;
  width: fit-content;
}

.contact .about .facebook {
  color: white;
  background-color: #1877f2;
}

.contact .about .tiktok {
  color: white;
  background-color: #010101;
}

.contact .about .whatsapp {
  color: white;
  background-color: #25d366;
}

.contact .about .phone {
  color: white;
  background-color: #177afc;
}

.contact .about a:hover i {
  transform: scale(1.3);
  transition: transform 0.3s;
}

.form-map {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  margin: 10px 0;
}

@media (max-width: 992px) {
  .form-map {
    flex-direction: column;
    gap: 0;
  }
}

/*Start Form */
form {
  width: 400px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
  margin: 20px auto;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

form h3 {
  font-weight: 700;
  font-size: 20px;
  text-align: center;
  margin: 0;
}
form input {
  border: 1px solid #777;
  padding: 10px 20px;
  outline: none;
  border-radius: 12px;
}

form textarea {
  height: 75px;
  resize: none;
  outline: none;
  padding: 10px;
}

form .sub {
  margin: auto;
  width: 150px;
  cursor: pointer;
  font-weight: 700;
  border: none;
}

form .sub:hover {
  color: white;
  letter-spacing: 1.5px;
  background-color: #03a8f4b9;
}
.date {
  height: 60px;
}
form .inf:focus,
textarea:focus {
  transform: scale(1.1);
  transition: 0.5s;
}

@media (max-width: 450px) {
  form {
    width: 290px;
  }
}
/*End Form */

.contact .map {
  margin-top: 50px;
  width: 400px;
  height: 300px;
}

@media (max-width: 450px) {
  .contact .map {
    width: 250px;
    height: 300px;
  }
  .contact .about a {
    font-size: 16px;
  }
}
.contact .map iframe {
  width: 100%;
  height: 100%;
}

/* End Contact Us */
/* Footer */
footer p {
  text-align: center;
  height: 80px;
  line-height: 80px;
  background-color: var(--main-color);
  color: white;
  margin: 0;
}
/* Footer */

/* Start Comments */
.comments {
  padding: 30px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 0 10px #ddd;
}

@media (max-width: 768px) {
  .comments {
    padding: 30px 0;
  }
}

.comments h3 {
  font-weight: 700;
  font-size: 32px;
  text-align: center;
  margin: 0 0 30px 0;
  font-weight: bold;
}

.cusdis_thread iframe {
  width: 100%;
  min-height: 800px;
  border: none;
}

/* End Comments */
