@import url("https://fonts.googleapis.com/css2?family=Onest:wght@100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Onest", sans-serif;
}

.container {
  max-width: 90%;
  margin: 0 auto;
}

a {
  text-decoration: none;
}

li {
  list-style: none;
}

.flex {
  display: flex;
  flex-wrap: wrap;
}

.al-center {
  align-items: center;
}

.sp-bw {
  justify-content: space-between;
}

.col-50 {
  width: 50%;
}

.col-25 {
  width: 25%;
}

/* header style */
header {
  background: #2056ba;
  padding: 20px 0;
}

.logo a {
  display: flex;
  align-items: center;
  color: #e8dccf;
  font-size: 1.8rem;
  font-weight: 700;
}

.logo a img {
  margin-right: 10px;
  max-width: 64px;
  min-height: 64px;
  object-fit: contain;
}

.menu ul {
  display: flex;
  align-items: center;
}

.menu ul li {
  margin: 4px 20px;
}

.menu ul li a {
  color: #e8dccf;
  margin: 8px 12px;
  font-size: 1.2rem;
  line-height: 1.5;
  position: relative;
}

.menu ul li a::before {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  background-color: #e8dccf;
  height: 2px;
  width: 0;
  transition: all 0.3s ease-in-out;
}

.menu ul li a:hover::before {
  width: 100%;
}

.toggle {
  display: none;
}

.toggle i {
  color: #e8dccf;
  font-size: 24px;
  cursor: pointer;
}

/* hero area style */
.hero-area {
  padding: 11rem 0;
  background: linear-gradient(rgba(39, 35, 44, 0.5), rgba(39, 35, 44, 0.5)),
    url(images/back.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-text {
  text-align: center;
}

.hero-text h1 {
  margin-bottom: 60px;
  color: #ffffff;
  font-size: 4.6rem;
  line-height: 1;
  font-weight: 400;
}

.hero-text p {
  margin-bottom: 30px;
  font-size: 1.8rem;
  font-weight: 400;
  color: #ffffff;
}

/* welcome area style */
.welcome-area {
  background-color: #2056ba;
  padding: 5rem 0;
}

.welcome-area h2 {
  margin-bottom: 60px;
  color: #e8dccf;
  text-align: left;
  font-size: 1.8rem;
  font-weight: 400;
}

/* tabs area style */
.tabs-area {
  padding: 5rem 0;
  background-color: #e8dccf;
  display: flex;
  justify-content: center;
}

.tabs-wrapper {
  padding-right: 60px;
  width: 30%;
}

.tabs-wrap {
  border-left: 1px solid #2056ba;
  padding-left: 20px;
  height: fit-content;
}

.tabs-wrap ul {
  border: none;
  padding: 0;
  border-radius: 0 !important;
  background-color: transparent;
  display: inline-block;
}

.tabs-wrap .nav-item {
  padding: 0;
  border: none;
  border-radius: 0;
  margin-top: 20px;
  display: block;
}

.tabs-wrap .nav-item:first-child {
  margin-top: 0;
}

.tabs-wrap .nav-item a {
  color: #2056ba;
  font-size: 1.2rem;
  line-height: 1.5;
  position: relative;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  padding-bottom: 4px;
}

.tabs-wrap .nav-item a.active {
  font-weight: bold;
}

.tabs-wrap .nav-item a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background-color: #2056ba;
  transition: all 0.3s ease-in-out;
}

.tabs-wrap .nav-item a.active::before {
  width: 100%;
}

.text-wrapper {
  width: 70%;
}

.content-wrap p {
  color: #2056ba;
  font-size: 1.8rem;
  line-height: 1.3;
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
}

/* country guide style */
.country-guide {
  padding: 5rem 0;
  background-color: #2056ba;
}

.desc-wrapper p {
  display: inline-flex;
  position: relative;
  align-items: center;
  margin-bottom: 60px;
  padding-left: 120px;
  color: #e8dccf;
  font-size: 1.2rem;
  line-height: 1.5;
}

.desc-wrapper p::before {
  content: "";
  position: absolute;
  left: 0;
  width: 90px;
  height: 1px;
  background-color: #e8dccf;
}

.items-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  padding-bottom: 160px;
  border-bottom: 1px solid #e8dccf;
}

.item {
  position: relative;
  overflow: hidden;
}

.item-img {
  margin-bottom: 50px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.item-img {
  margin-bottom: 50px;
}

.item-img img {
  width: 100%;
  height: 700px;
  object-fit: cover;
  transition: all 0.5s ease-in-out;
}

.title-wrapper h4 {
  display: inline-flex;
  width: fit-content;
  position: relative;
  margin-bottom: 25px;
  color: #e8dccf;
  font-size: 1.8rem;
  line-height: 1.3;
}

.text-wraper p {
  display: inline-flex;
  margin-bottom: 30px;
  font-size: 1.2rem;
  line-height: 1.5;
  color: #e8dccf;
  width: 85%;
}

/* why choose style */
.why-choose {
  padding: 5rem 0;
  background-color: #2056ba;
}

.why-choose h2 {
  margin-bottom: 80px;
  color: #e8dccf;
  font-size: 1.8rem;
  line-height: 1.3;
  font-weight: 400;
}

.choose-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 140px 30px;
}

.card-box h4 {
  margin-bottom: 50px;
  color: #e8dccf;
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 400;
}

/* journey area style */
.journey-area {
  padding: 5rem 0;
  background-color: #e8dccf;
}

.card-text-1 {
  margin-bottom: 150px;
}

.card-text-contact {
  margin-bottom: 70px;
}

.card-text {
  width: 50%;
  padding-right: 60px;
}

.card-text h4 {
  color: #254b45;
  display: inline-flex;
  position: relative;
  align-items: center;
  margin-bottom: 60px;
  padding-left: 120px;
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 400;
}

.card-text h4::before {
  content: "";
  position: absolute;
  left: 0;
  width: 90px;
  height: 1px;
  background-color: #254b45;
}

.card-text p,
.card-text ul li {
  color: #254b45;
  font-size: 1.8rem;
  line-height: 1.3;
  margin-bottom: 10px;
}

.card-image {
  position: relative;
  width: 50%;
}

.card-image::before {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 118px;
  height: 118px;
  background-image: linear-gradient(-135deg, #2056ba 50%, #e8dccf 50%);
  z-index: 1;
}

.card-image img {
  width: 100%;
  height: 840px;
  object-fit: cover;
}

/* footer style */
.footer-area {
  padding: 5rem 0;
  background-color: #2056ba;
}

.footer-area .col-50 {
  padding-bottom: 50px;
}

.foot-logo img {
  margin-bottom: 50px;
  display: inline-flex;
  width: 64px;
  height: 54px;
  object-fit: contain;
}

.foot-logo h2 {
  color: #e8dccf;
  margin-bottom: 20px;
  font-size: 3.125rem;
  line-height: 1.25;
}

.foot-logo p {
  width: 90%;
  color: #e8dccf;
  font-size: 1.2rem;
}

.footer-area .col-25 ul li {
  margin-bottom: 22px;
}

.footer-area .col-25 ul li a {
  color: #e8dccf;
  font-size: 1.2rem;
}

.border-wrapper {
  height: 1px;
  width: 100%;
  margin-bottom: 60px;
  position: relative;
  background-color: #e8dccf;
}

.copy-wrapper p {
  color: #e8dccf;
  font-size: 1.2rem;
  line-height: 1.5;
}

@media (max-width: 767px) {
  .logo a img {
    max-width: 50px;
    min-height: 50px;
  }

  .logo a {
    font-size: 1.4rem;
  }

  .toggle {
    display: block;
  }

  .menu {
    display: none;
    background: #2056ba;
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    padding: 34px 0;
    z-index: 999;
  }

  .menu ul {
    display: block;
    list-style: none;
    padding: 0;
  }

  .menu ul li {
    margin: 10px 0;
    padding: 10px 0;
  }

  .menu ul li a {
    color: #e8dccf;
    margin: 8px 12px;
    font-size: 1.2rem;
  }

  .toggle {
    display: block;
  }

  .menu.active {
    display: block;
  }

  .hero-area {
    padding: 3rem 0;
  }

  .hero-text {
    text-align: left;
  }

  .hero-text h1 {
    margin-bottom: 40px;
    font-size: 2rem;
  }

  .hero-text p {
    margin-bottom: 10px;
    font-size: 1.4rem;
  }

  .welcome-area h2 {
    margin-bottom: 40px;
    font-size: 1.4rem;
  }

  .tabs-wrapper {
    padding-right: 0px;
    width: 100%;
    margin-bottom: 60px;
  }

  .text-wrapper {
    width: 100%;
  }

  .tabs-wrap .nav-item a {
    font-size: 1rem;
  }

  .content-wrap p {
    font-size: 1.4rem;
  }

  .items-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 80px;
  }

  .item-img img {
    height: 350px;
    margin-bottom: 40px;
  }

  .title-wrapper h4 {
    margin-bottom: 25px;
    font-size: 1.4rem;
  }

  .text-wraper p {
    font-size: 1.1rem;
    width: 100%;
  }

  .items-wrapper .item:nth-child(2n) {
    padding-top: 0px;
  }

  .why-choose h2 {
    margin-bottom: 80px;
    font-size: 1.4rem;
  }

  .choose-wrapper {
    grid-template-columns: 1fr;
    gap: 0px;
    padding-bottom: 80px;
    padding-left: 0;
  }

  .card-text {
    width: 100%;
    padding-right: 0px;
  }

  .card-text h4::before {
    width: 60px;
  }

  .card-text h4 {
    font-size: 1.1rem;
    padding-left: 80px;
    margin-bottom: 40px;
  }

  .card-text p,
  .card-text ul li {
    font-size: 1.4rem;
  }

  .card-text-1,
  .card-text-2 {
    margin-bottom: 60px;
  }

  .card-image {
    width: 100%;
  }

  .card-image img {
    width: 100%;
    height: 360px;
    object-fit: cover;
  }

  .card-image::before {
    width: 50px;
    height: 50px;
    bottom: 4px;
  }

  .col-50,
  .col-25 {
    width: 100%;
  }

  .foot-logo img {
    margin-bottom: 40px;
  }

  .foot-logo h2 {
    margin-bottom: 30px;
    font-size: 1.4rem;
  }

  .footer-area .col-25 ul li a {
    font-size: 1rem;
  }

  .border-wrapper {
    margin-bottom: 30px;
  }

  .copy-wrapper p {
    font-size: 1rem;
  }
}

/* privacy policy style */
.privacy {
  padding: 5rem 0;
  background-color: #e8dccf;
}

.privacy .desc-wrapper p {
  color: #254b45;
  font-size: 1.8rem;
  line-height: 1.3;
}

.privacy .desc-wrapper p::before {
  background: #254b45;
}

.privacy h2 {
  color: #254b45;
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 400;
}

.privacy h2 a {
  color: #254b45;
  font-weight: 600;
}

/* about style */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("images/top-bg.jfif");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  color: #fff;
  padding: 100px 0;
}

.hero h1 {
  font-size: 5.5em;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero p {
  font-size: 1.6em;
  line-height: 1.3;
  font-weight: bold;
  margin: 0 auto 15px auto;
}

/* Story and Offer Section */
.story-offer {
  padding: 60px 0;
  background-color: #2056ba;
}
.story-offer p {
  font-size: 1.5em;
  padding: 0;
}

.story-offer h2 {
  font-size: 1.8em;
  margin-bottom: 0px;
  color: #e8dccf;
}

.our-story {
  margin-bottom: 50px;
  color: #e8dccf;
}

.what-we-offer {
  background-color: #2056ba;
  padding: 40px;
  border-radius: 8px;
}

.offers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.offer-item h3 {
  color: #e8dccf;
  font-size: 1.3em;
  margin-bottom: 10px;
}
.offer-item p {
  color: #e8dccf;
}

/* Values and Sustainability Section */
.values-sustainability {
  padding: 60px 0;
  background-color: #2056ba; /* Dark background */
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: flex-start; /* Align content to the top */
}

.values-sustainability .container {
  display: flex;
}

.our-values,
.sustainability {
  flex: 1;
  padding: 30px;
  border-radius: 8px;
}

.our-values {
  background-color: #254b45;
}

.sustainability {
  background-color: #fff;
}
.sustainability p {
  color: #254b45;
  font-size: 1.5em;
}
.sustainability h2 {
  font-size: 2.2em;
  color: #254b45 !important;
  font-weight: bold;
}

.our-values h2 {
  font-size: 2.2em;
  margin-bottom: 20px;
  color: #e8dccf;
}

.our-values h3 {
  color: #e8dccf;
  font-size: 1.5em;
  margin-top: 25px;
  margin-bottom: 10px;
}

.our-values p {
  font-size: 1.5em;
  color: #e8dccf;
}

/* Why Choose Section */
.choose-why {
  padding: 80px 0;
  background-color: #2056ba;
  display: flex;
  justify-content: center;
  align-items: center;
}

.choose-why .container {
  display: flex;
  flex-wrap: wrap;

  justify-content: space-between;
}

.choose-why .text-content {
  width: 45%;
}

.choose-why h2 {
  font-size: 2.5em;
  color: #e8dccf;
  margin-bottom: 20px;
}

.choose-why p {
  line-height: 1.7;
  margin-bottom: 15px;
  color: #e8dccf;
  font-weight: 400;
  font-size: 1.2rem;
}

.choose-why .join-us h3 {
  font-size: 1.8em;
  color: #e8dccf;
  margin-top: 30px;
  margin-bottom: 10px;
}

.choose-why .image-content {
  width: 45%;
}
.image-content img {
  height: 100%;
  width: 100%;
}

/* Gallery Section */
.gallery {
  padding: 60px 0;
  background-color: #262626; /* Dark background */
}

.gallery .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}

.gallery img {
  width: 100%;
  height: 150px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.05);
}

/* Newsletter Section */
.newsletter {
  background-color: #262626; /* Even darker background */
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.newsletter h2 {
  font-size: 2.8em;
  margin-bottom: 30px;
  font-weight: 700;
}

.newsletter form {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.newsletter input[type="email"] {
  padding: 15px 20px;
  border: none;
  border-radius: 5px 0 0 5px;
  width: 300px;
  font-size: 1em;
  outline: none;
}

.newsletter button {
  background-color: #71eac6;
  color: #336c5b;
  border: none;
  padding: 15px 25px;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  font-size: 1em;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.newsletter button:hover {
  background-color: #71eac6;
}

.newsletter label {
  font-size: 0.9em;
}

.newsletter label a {
  color: #71eac6;
  text-decoration: none;
}

@media (max-width: 768px) {
  header .container {
    flex-direction: column;
    text-align: center;
  }
  header nav ul {
    margin-top: 15px;
  }
  header nav ul li {
    margin: 0 15px;
  }

  .hero h1 {
    font-size: 2.5em;
  }
  .hero p {
    font-size: 1em;
  }

  .offers-grid {
    grid-template-columns: 1fr;
  }

  .values-sustainability .container {
    flex-direction: column;
    gap: 20px;
  }

  .choose-why .text-content {
    width: 100%;
  }
  .choose-why .image-content {
    width: 100%;
  }
  .choose-why {
    background-color: #2056ba;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 0;
    padding-bottom: 20px;
  }

  .gallery .container {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }

  .newsletter input[type="email"] {
    width: 100%;
    border-radius: 5px;
    margin-bottom: 10px;
  }
  .newsletter form {
    flex-direction: column;
    align-items: center;
  }
  .newsletter button {
    border-radius: 5px;
    width: 100%;
  }
  .newsletter h2 {
    font-size: 1.8em;
    margin-bottom: 30px;
    font-weight: 700;
  }

  footer .container {
    flex-direction: column;
    align-items: center;
  }
  .footer-logo {
    margin-bottom: 30px;
  }
  .footer-nav ul {
    text-align: center;
    margin-bottom: 30px;
  }
}

/* contact style */
.contact-area h4 {
  font-size: 3.125rem;
  line-height: 1.25;
}

@media (max-width: 768px) {
  .contact-area h4 {
    font-size: 1.8rem;
    line-height: 1.25;
  }
}

#website-ad-section img {
  width: 100%;
}

#mobileView {
  display: none;
}

@media (max-width: 767px) {
  #mobileView {
    display: block;
  }

  #desktopView {
    display: none;
  }
}
