@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

:root {
  --primary-color: rgb(52,153,254);
  --primary-color-dark: #051d2c;
  --primary-color-fade: #2687fed7;
  --text-dark: #0a0a0a;
  --text-light: #737373;
  --extra-light: #f3f4f6;
  --white: #ffffff;
  --max-width: 1200px;

}


* {
  padding: 0;
  /* color: rgb(52, 153, 254); */
  margin: 0;
  box-sizing: border-box;
}

.section__container {
  max-width: var(--max-width);
  margin: auto;
  padding: 5rem 1rem;
  /* background-color: var(--extra-light); */
}

.section__container.our__services, .section__container.our__team{
  width: 100%;
  padding: 5rem 3rem;
  max-width: unset;
  background-color: var(--extra-light);
}
.section__header {
  margin-bottom: 5px;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  text-align: center;
  padding-top: 3.5rem;
}

.section__description {
  max-width: 600px;
  margin-inline: auto;
  color: var(--text-light);
  text-align: center;
}

.btn {
  padding: 0.75rem 1.5rem;
  outline: none;
  border: none;
  font-size: 1rem;
  white-space: nowrap;
  color: var(--white);
  background-color: var(--primary-color);
  border-radius: 5rem;
  transition: 0.3s;
  cursor: pointer;
}

.btn:hover {
  background-color: var(--primary-color-dark);
}

.logo {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-dark);
}

img {
  display: flex;
  width: 100%;
}

.logo img {
  width:  150px;
}

.hr__divider {
  width: 95%;
  margin: 0 auto;
  border: 0.1rem solid var(--extra-light);
}

a {
  text-decoration: none;
  transition: 0.3s;
}

ul {
  list-style: none;
}

html,
body {
  scroll-behavior: smooth;
  
}

body {
  font-family: "DM Sans", sans-serif;
}

nav {
  position: fixed;
  left: 0;
  isolation: isolate;
  top: 0;
  width: 100%;
  z-index: 9;
}

.nav__header {
  padding: 1rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--primary-color-dark);
}

.nav__logo .logo {
  font-size: 1.5rem;
}

.nav__menu__btn {
  font-size: 1.5rem;
  color: var(--white);
  cursor: pointer;
}

.nav__links {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
  background-color: var(--primary-color);
  transition: transform 0.5s;
  z-index: -1;
}

.nav__links.open {
  transform: translateY(100%);
}

.nav__links a {
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
}

.nav__links a:hover {
  color: var(--text-dark);
}

.nav__btns {
  display: none;
}

/* HEADER */

header {
  margin-top: 3rem;
  padding-inline: 1rem;
  position: relative;
  isolation: isolate;
  height: 100vh;
  overflow: hidden;
}

header::before {
  position: absolute;
  content: '';
  height: 100%;
  width: 100%;
  /* width: calc(100% - 2rem); */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url('assets/hero_img.jpg');
  background-position: center center; 
  background-size: cover;
  background-repeat: no-repeat;
  /* border-radius: 2rem; */
  z-index: -1;
  filter: brightness(0.75);

}

.header__container {
  display: grid;
}

.header__content {
  padding: 12rem 1rem;
}

.header__content p{
  margin-bottom: 5px;
  font-size: 1rem; 
  font-weight: 600;
  color: var(--extra-light);
  text-align: center;
  font-weight: 300;
}

.header__content h1 {
  margin-bottom: 2rem;
  font-size: 3.5rem;
  font-weight: 600;
  color: #fff;
  line-height: 3.5rem;
  text-align: center;

}

.header__btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.header__btns .btn{
  padding: 1rem 2rem;
}

.header__btns a {
  padding: 9px 13px;
  font-size: 1.5rem;
  color: var(--primary-color);
  background-color: var(--white);
  border-radius: 100%;
  cursor: pointer;
}

.header__btns a.hero__btn {
  border-radius: 0;
  background-color: transparent;
  font-size: inherit;
  padding: 0;
}

.header__btns a.hero__btn:hover{
  color: transparent;
  background-color: transparent;
}

.header__btns a:hover {
  color: var(--white);
  background-color: var(--primary-color);
}

.destination__container :is(.section__header, .section__description){
  text-align: left;
  margin-inline-start: unset;
}

.destination__grid {
  margin-top: 4rem;
  display: grid;
  gap: 2rem 1rem;
}

.destination__card {
  display: flex;
  flex-direction: column;
  position: relative;
}
 
.destination__card img {
  border-radius: 100%;
  width: 100px;
  height: 100px;
  box-shadow: 5px 5px 20px rgba(0,0,0,0.2);
  object-fit: cover;
  border: 3px solid rgb(52, 153, 254);
}

.destination__card i {
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-color);
  font-size: 1.2rem;
  cursor: pointer;
}

.destination__card__details {
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.destination__card__details h4 {
  margin-bottom: 5px;
  font-size: 1.2rem;
  font-weight: 600;
  columns: var(--text-dark);
}

.destination__card__details h4 span {
  font-size: .75rem;
  /* color: var(--text-light); */
  color: rgb(52, 153, 254);
  font-weight: 600;
  font-style: italic;
}

.destination__card__details p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 22px;
}

.destination__card__details p span {
  color:rgb(52, 153, 254);
  font-weight: 500;
}

.journey__grid {
  margin-top: 2rem;
  display: grid;
  gap: 0 1rem;
}

.journey__card {
  position: relative;
  isolation: isolate;
  padding-top: 4rem;
  overflow: hidden;
}

.journey__card__bg{
  padding: 2rem;
  background-color: var(--white);
  border-top-right-radius: 1rem;
  border-top-left-radius: 1rem;
}

.journey__card__bg span {
  display: inline-block;
  margin-bottom: 4rem;
  width: 3rem;
}

.journey__card__bg h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark)
}

.journey__card__bg small {
  color: var(--primary-color);
  font-size: .85rem;
}

.journey__card__content {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 1rem;
  padding-bottom: 2rem;
  background-color: var(--primary-color);
  border-top-right-radius: 1rem;
  border-top-left-radius: 1rem;
  transition: 0.3s;
  color: var(--text-dark);
}

.journey__card__content span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 1rem;
  padding: 1px 4px;
  font-size: 1rem;
  color: var(--white);
  border: 2px solid var(--white);
  border-radius: 100%;
}

 .journey__card__bg span.freight{
  margin-bottom: 2.7rem; 
 }

.journey__card__content span img {
  width: 1.5rem;
}

.journey__card:hover .journey__card__content {
  top: 0;
}

.journey__card__content h4 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
}

.journey__card__content p {
  color: var(--extra-light);
}

/* SERVICES */

.showcase__container.services {
  display: grid;
  gap: 2rem;
  overflow: hidden;
  /* background-color: #eafdff; */
  margin: 0;
  width: 100%;
  max-width: unset;
}

.showcase__container .services__item {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 30px;
  background-color: #f6f6f6b9;
  padding: .75rem;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.07);
  border-radius: 20px;
}

.showcase__image {
  overflow: hidden;
}
.showcase__image img {
  max-width: 100%;
  margin-inline: auto;
  border-radius: 1rem;
}


.showcase__content h4 {
  margin-bottom: 2rem;
  font-size: 3rem;
  font-weight: 600;
  color: #595858;
  position: relative;
  line-height: 45px;
}

.showcase__content h4::before {
  content: '';
  position: absolute;
  width: 6px;
  height: 40%;
  background-color: var(--primary-color);
  top: 12px;
  left: -10px;
  /* padding-right: 5px; */
}

.showcase__content p{
  margin-bottom: 1rem;
  color: var(--text-light);
}

.showcase__content ul li{
  color: var(--text-light);
}
.showcase__content .btn {
  width: 100%;
  margin-top: 2rem;
  padding: 1.5rem;
  font-weight: 600;
  color: var(--white);
}

/* CLIENTS */

.wrapper__clients{
  width: 85%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-radius: 180px;
  padding: .5rem 1rem;
  background: #dddddd38;
  border: 2px solid rgb(52, 153, 254);
  box-shadow: inset rgba(0, 0, 0, 0.097) 1px 1px 5px;
}

.client__item {
  animation: animate 25s alternate linear infinite;
  margin-right: 50px;
}

.wrapper__clients:hover .client__item {
  animation-play-state: paused;
}

.client__item img {
  width: 90px;

}


/* CONTACT */

footer {
  /* background-color: var(--primary-color); */
  background-color: #111;
  color: var(--white);
}

.section__container.contact__container {
  width: 100%;
  min-height: 100vh;
  display: flex;
  /* alignment-baseline: center; */
  justify-content: center;
  align-items: center;

}

.contact__row {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1100px;
}

.contact__row .col {
  display: flex;
  flex-direction: column;
}

.contact__row .left {
  flex-basis: 45%;
  min-width: 320px;
  margin-right: 60px;
}

.contact__row .right{
  flex-basis: 50%;
  /* background-color: #f7f7f7; */
}

.contact__row .left .contact__title h2 {
  position: relative;  
  font-size: 28px;
  color: var(--white);
  display: inline-block;
  margin-bottom: 25px;
}

.contact__row .left .contact__title h2::before{
  content: '';
  position: absolute;
  width: 50%;
  height: 1%;
  background-color: #f7f7f7;
  top: 120%;
  left: 0;
}

.contact__row .left .contact__title h2::after{
  content: '';
  position: absolute;
  width: 25%;
  height: 3px;
  background-color: var(--white);
  top: calc(120% - 1px);
  left: 0;
}

.contact__row .left .contact__title p {
  font-size: 17px;
  color: #ddd;
  letter-spacing: 0.0525rem;
  line-height: 1.2;
  padding-bottom: 22px;
}

.contact__row .left .contact__info {
  margin-bottom: 1rem;
}

.contact__info .icon__group {
  display: flex;
  align-items: center;
  margin: 25px 0px;
}

.contact__info .icon {
  width: 45px;
  height: 45px;
  border: 2px solid rgb(52, 153, 254);
  border-radius: 50%;
  margin-right: 20px;
  position: relative;
}

.contact__info .icon__group .icon i {
  font-size: 20px;
  color: #eee;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.icon__group .details span {
  display: block;
  color: #fff;
  font-size: 18px;
}

.icon__group .details span:nth-child(1){
  text-transform: uppercase;
  color: #dcdcdc;
}

.contact__row .left .social__media {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  margin: 20px 0 22px;
}

.social__media a {
  width: 35px;
  height: 35px;
  text-decoration: none;
  text-align: center;
  margin-right: 15px;
  border-radius: 5px;
  background-color: rgb(52, 153, 254);
  transition: 0.4s;
  box-shadow: 1px 1px 5px #051d2c14;
  
}

.social__media a i {
  color: #fff;
  font-size: 1.5rem;
  line-height: 35px;
  border: 1px solid transparent;
  transition: 0.4s;
}

.social__media a:hover {
  transform: translateY(-3px);
  background-color: #000;
  color: rgb(52, 153, 254);
  border: 1px solid rgb(52, 153, 254);
}

.social__media a:hover i {
  color: rgb(52, 153, 254);
}

/* CONTACT FORM SIDE */
.contact__row .right .message__form {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 30px;
  color: var(--white);
}

.contact__row .input__group {
  margin: 18px 0px;
  position: relative;
}

.message__form .half__width {
  flex-basis: 48%;
}

.message__form .full__width {
  flex-basis: 100%;
}

.message__form input, .message__form textarea {
  width: 100%;
  font-size: 18px;
  padding: 2px 0px;
  background-color: #2e2e2e3c;
  color: #ddd;
  border: none;
  border-radius: 5px;
  border-bottom: 2px solid #666;
  outline: none;
}

.message__form textarea {
  resize: none;
  height: 220px;
  display: block;
}

textarea::-webkit-scrollbar{
  width: 5px;
}

textarea::-webkit-scrollbar-track{
  background-color: #2c2c2c;
  border-radius: 15px;
}

textarea::-webkit-scrollbar-thumb{
  background-color: rgb(52, 153, 254);
  border-radius: 15px;
}
.message__form input {
  height: 50px;
}

.contact__row .input__group label {
  position: absolute;
  left: 0;
  bottom: 4px;
  color: #66666683;
  font-size: 18px;
  transition: 0.4s;
}

.contact__row .input__group:nth-child(4) label{
  top: 2px;

}

.contact__row .input__group input:focus ~ label, .contact__row .input__group textarea:focus ~ label, .contact__row .input__group input:valid ~ label, .contact__row .input__group textarea:valid ~ label{
  transform: translateY(-30px);
  font-size: 16px;
}

.input__group button {
  padding: 8px 16px;
  font-size: 18px;
  background-color: rgb(52, 153, 254);
  color: #eee;
  border: 1px solid transparent;
  border-radius: 15px;
  cursor: pointer;
  outline: none;
  box-shadow: 0 8px 15px rgba(0,0,0,0.3);
  transition: 0.4s;
}

.input__group button:hover {
  background-color: #2e2e2e;
  color: rgb(52, 153, 254);
  box-shadow: 0 0 15px rgb(0,0,0,0.3);  
  border: 1px solid rgb(52, 153, 254)
}

/* ANIMATIONS */
@keyframes animate{
  0% {
    transform: translate3d(0,0,0);
  }
  100%{
    transform: translate3d(-1100px,0,0);
  }
}


/* MEDIA QUERIES */

@media (max-width: 1100px){
  .message__form .half__width{
    flex-basis: 100%;
  }

  @media(max-width: 901px){
    .contact__row {
      flex-wrap: wrap;
    }

    .contact__row .left, .contact__row .right{
      flex-basis: 100%;
      margin: 0px;
    }
  }
}

/* for slide */
@media (max-width: 767px){
  .wrapper__clients {
    width: 100%;
    border-radius: 180px;
    padding: .85rem;
  
  }

  .client__item img {
    width: 80px;
    
  }

  .client__item{
    margin-right: 35px;
  }
}

@media (width > 540px){
  .destination__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .journey__grid {
    grid-template-columns: repeat(1,1fr);
  }

  .showcase__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

}

@media (width > 768px){
  header {
    margin-top: 0;
  }

  .header__content {
    padding: 4rem 3rem;
  }
  nav{ 
    position: fixed;
    padding: 1rem 4rem;
    /* max-width: var(--max-width); */
    width: 100%;
    background: linear-gradient(0deg, #32323233, #64646433);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }

  .nav__header {
    flex: 1;
    padding: 0;
    background-color: transparent;
  }

  .nav__logo .logo {
    color: var(--text-dark);
  }

  .nav__menu__btn {
    display: none;
  }

  .nav__links {
    position: static;
    width: fit-content;
    padding: 0;
    flex-direction: row;
    background-color: transparent;
    transform: none !important;
  }

  .nav__links a {
    /* color: var(--primary-color-dark); */
    color: var(--white);
    font-weight: 300;
    cursor: pointer;
    }

  .nav__links a:hover {
    color: var(--primary-color);
  }
  .nav__links li:last-child {
    display: none;
  } 

  .nav__btns {
    flex: 1;
    display: flex;
    justify-content: flex-end;
  }

  .nav__btns button{
    padding: 0.6rem 2rem;
    background-color: var(--primary-color-dark);
    cursor: pointer;
  }

  .nav__btns button:hover {
    background-color: var(--primary-color);
  }

  .header__container {
    grid-template-columns: minmax(0, 1fr) 
    repeat(2, minmax(0, calc(var(--max-width) / 2)))
    minmax(0, 1fr);
  }

  .header__content{
    grid-column: 2/4;
    padding-block: 12rem;

  }

  .header__content :is(p, h1) {
    text-align: left;
  }

  .header__btns {
    justify-content: flex-start;
  }

  .header__content h1{
    font-size: 4.5rem;
    line-height: 5.5rem;
  }

  .destination__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .journey__grid {
    grid-template-columns: repeat(3,1fr);
  }

  .showcase__container {
    grid-template-columns: repeat(1, 3fr);
  }

  .showcase__container .services__item {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  background-color: #f6f6f6b9;
  padding: 4rem;
  margin: 0 4rem;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.07);
  border-radius: 20px;
}

  .showcase__content {
    grid-column: 2/4;
  }

  .journey__card__bg small {
    display: none;
  }
}


/* ABOUT PAGE */

main {
  width: 100%;
}

main .about__header {
  background-image: url(assets/about_header.jpg);
  width: 100%;
  height: 60vh;
  object-fit: contain;
  background-position: top bottom;
}

.about__header__content {
  padding: 4rem 5rem
}

.about__header__content .section__header.about__title{
  color: var(--white);
}

.about__body {
  width: 100%;
  background-color: var(--extra-light);
  padding: 8rem 3rem;
}

.about__body .about__wrapper {
  max-width: var(--max-width);
  width: 75%;
  margin: 0 auto;
}

.about__wrapper h2.title {
  font-size: 3rem;
  color: var(--primary-color);
}

.about__wrapper .content p{
  line-height: 22px;
  word-spacing: 1px;
}