@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --font-heading: 'Archivo', sans-serif;
    --font-paragraph: 'Barlow', sans-serif;
    --font-roboto: 'Roboto', sans-serif;
    --color-paragraph:rgb(142, 136, 168);
    --color-heading:rgb(232, 226, 255);
    --color-paragraph-hover:rgb(255, 119, 0);
    --color-paragraph1:rgb(58, 181, 0);
    --background1:#000927;
    --background2:#0F1C44;
    --border-color:#1F3064;
    --nav-text-hover:#154A96;
    /* --hero-color:#124A96; */
  }

  .background1 {
    background-color: var(--background1);
 }
 .background2 {
    background-color: var(--background2);
 }
 
 .background-width{
    max-width: 90rem;
    margin: auto;
    padding: 0 3rem;
  }
  @media (max-width: 768px) {
    .background-width {
      padding: 0 1.5rem; 
    }
  }
  
  @media (max-width: 480px) {
    .background-width {
      padding: 0 1rem; 
    }
  }
  .hidden-link {
  display: none;
}

 .hero_font{
    font-weight: 800;
    color: var(--nav-text-hover);
    line-height: 2.5rem;
    font-size: 3rem;
    font-family: var(--font-heading);
 }
 .hero_normal{
    font-weight: 600;
    color: var(--background1);
    line-height: 34px;
    font-size: 2rem;
    font-family: var(--font-paragraph);
 }

.heading1{
    font-weight: 700;
    color: var(--color-heading);
    line-height: 2.5rem;
    font-size: 2rem;
    font-family: var(--font-heading);
}


.heading2{
    font-weight: 700;
    color: var(--color-heading);
    line-height: 30px;
    font-size: 24px;
    font-family: var(--font-heading);
}
.heading3{
    font-weight: 700;
    color: var(--color-heading);
    line-height: 26px;
    font-size: 20px;
    font-family: var(--font-heading);
}
.heading4{
    font-weight: 700;
    color: var(--color-heading);
    line-height: 23px;
    font-size: 18px;
    font-family: var(--font-heading);
}

.heading2:hover{
    color:var(--color-paragraph-hover) ;
}
.heading4:hover{
    color:var(--color-paragraph-hover) ;

}
.text-hover{
    font-weight: 500;
    /* color: var(--background1); */
    line-height: 23px;
    font-size: 20px;
    font-family: var(--font-heading);
    
}
.text-hover:hover{
    color: white;
}
.text-hover1{
    font-weight: 500;
    color: white;
    line-height: 23px;
    font-size: 20px;
    font-family: var(--font-heading);
    
}
.text-hover1:hover{
    color: black;
}


.normal{
    font-weight: 400;
    color: var(--color-paragraph);
    line-height: 26px;
    font-size: 1rem;
    font-family: var(--font-paragraph);
}
.navbar-border{
    border: 1px solid var(--border-color);
}
.normal1{
    font-weight: 500;
    color: var(--color-paragraph);
    line-height: 26px;
    font-size: 1rem;
    font-family: var(--font-paragraph);
}
.normal2{
    font-weight: 600;
    color: var(--color-heading);
    line-height: 26px;
    font-size: 1rem;
    font-family: var(--font-paragraph);
}
.normal2:hover{
    color: var(--color-paragraph-hover);

}
.footer{
    font-weight: 600;
    color: var(--color-heading);
    line-height: 26px;
    font-size: 1rem;
    font-family: var(--font-paragraph);
}
.normal4{
    font-weight: 600;
    color: var(--color-heading);
    line-height: 26px;
    font-size: 1rem;
    font-family: var(--font-paragraph);
}
.normal3{
    font-weight: 600;
    color: var(--color-paragraph1);
    line-height: 26px;
    font-size: 1rem;
    font-family: var(--font-paragraph);
}
.custom-btn{
    padding: 8px 32px 9px 32px;
    max-width: max-content;
    border: 1px;
    border-style: solid;
    border-color: var(--border-color);
    transition: all 0.3s;
}
.custom-btn:hover{
    border-color: var(--color-paragraph-hover);
    background-color: var(--background1);

}

.gradient-border {
    position: relative;
    z-index: 0;
    overflow: hidden;
  }
  
  .gradient-border::before {
    content: '';
    position: absolute;
    top: -2px; bottom: -2px; left: -2px; right: -2px;
    background: linear-gradient(90deg, #4f46e5, #3b82f6); /* Your gradient colors */
    z-index: -1;
    border-radius: inherit;
  }
  
  .gradient-border > * {
    background-color:var(--border-color); /* Or dark depending on theme */
    padding: 16px;            /* Add spacing */
    border-radius: inherit;
    position: relative;
    z-index: 1;
  }
.custom-border{
    color:var(--background2);
    border: 1px;
    border-style: solid;
    border-color: var(--border-color);
    transition: all 0.3s;

}
.custom-border:hover{
    border-color: var(--color-paragraph-hover);

}
.custom-border-round{
    color:var(--background2);
    border: 1px;
    border-style: solid;
    border-color: var(--border-color);
    transition: all 0.3s;
    outline: 0px ;
    outline-offset: 0px;
    
}
.custom-country-card{
    border-bottom: 1px;
    border-style: solid;
    border-color: var(--border-color);
    padding: 20px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fafafa;
}
.destination-card{
    height: 250px;
    width: auto;
    align-items: center;
    justify-content: center;

}
.custom-top{
    margin-top:25px;
}
.card-testimonial{
    padding: 25px 50px;
}
.testimonial-img{
    height: 80px;
    width: 80px;
    border-radius: 100%;
    object-fit: cover;

}
.arrow-radius{
        height: 60px;
        width: 60px;
        border-radius: 100%;

}
.tk-arrow-right:before {
    content: "\f061";
}
.tk-arrow-left:before {
    content: "\f061";
}
.custom-svg{
    color: var(--border-color);
}
.custom-svg:hover{
    color: var(--color-paragraph-hover);
}

.input{
    background-color:var(--background2);
    border: 1px;
    border-style: solid;
    border-color: var(--border-color);
    transition: all 0.3s;
    color: var(--color-heading);
    outline: 0px ;
    outline-offset: 0px;
    padding: 6px 10px;
    border-radius: 5px;
}
.input:hover{
    color: var(--color-paragraph);
    border-color: var(--nav-text-hover);
}
.clamp-text {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    position: relative;
  }
  .clamp-text::after {
    content: '... Continue reading';
    color: var(--color-heading); /* Tailwind's blue-600 */
    text-decoration: underline;
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--background2);
    padding-left: 4px;
  }
  .target-footer {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .target-footer > *:not(span) {
    display: none;
  }
  
  .target-footer span {
    display: inline-block;
  }
 .hero {
    color: var(--background1);

    
}


.angled-btn {
    clip-path:  polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%);
    background: var(--border-color);
    color: white;
    font-weight: 700;
    font-family: var(--font-paragraph);
    padding: 10px 40px;
    text-transform: uppercase;
    font-size: 20px;

  }
.check_box{
    color: var(--background1);
    font-weight: 800;
    font-family: var(--font-paragraph);
    text-transform: uppercase;
    font-size: 18px;
    gap: 8px;
    align-items: center;
    display: flex;
    cursor: pointer;
    user-select: none;
}

.hero_footer{
    clip-path:  polygon(2% 0%, 111% 0%, 100% 100%, 0% 100%);

}