@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: #2887ff;
  --primary-color-dark: #2476da;
  --text-dark: #0a0a0a;
  --text-light: #737373;
  --extra-light: #f3f4f6;
  --white: #ffffff;
  --max-width: 1200px;
}

*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.section__container {
  max-width: var(--max-width);
  margin: auto;
  padding: 3rem 1rem 2rem 1rem;
}

.section__header {
  margin-bottom: 5px;
  font-size: 2.5rem;
  font-weight: 700;
  color: #284B63;
  text-align: center;
}

.section__description {
  margin-inline: auto;
  color: var(--text-light);
  text-align: justify;
  margin-bottom: 2rem;
  margin-top: 1rem;
}

.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%;
}

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;
  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);
}

.nav__logo .logo {
  font-size: 1.5rem;
  color: var(--white);
}

.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{
  margin-top: 1rem;
  padding-inline: 1rem;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
header::before{
  position:absolute;
  content: "";
  height: 100%;
  width: calc(100% - 2rem);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* background-image: url(img/background6.jpg); */
  background-color: transparent;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 3rem;
  z-index: -1;
} 
.header__container {
    display: flex;
    flex-direction: column-reverse; /* second item on top, first item on bottom */
  }


  .header__content p{
    margin-bottom: 5px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
  }

  .header__btns{
    display:flex ;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
  }

.destination__container :is(.section__header, .section__description){
  text-align: left;
  margin-inline-start: unset;
}

.destination__card img {
  border-radius: 1.5rem;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
}  


.destination__card__details{
  padding:1rem 0rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;


}
.destination__card__details p{
  columns: var(--text-light);
}
.destination__ratings{
  padding: 5px 10px;
  font-size: 0.9rem;
  white-space: nowrap;
  color: var(--white);
  background-color: #284B63;
  border-radius: 1rem;
  transition: 0.3s;
}

.destination__card:hover .destination__ratings{
  background-color: #3C6E71;
}

.discover__container :is(.section__header, .section__description){
  text-align: left;
  margin-inline-start: unset;
}

.journey__border{
  position: relative;
  border-radius: 7%;
  width: 100%;
  padding: 1rem 0 3rem 0;
  z-index: 3;
  background-color: #FFFFFF;
}

.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(--extra-light) ;
  border-bottom-left-radius: 1rem;
  border-top-right-radius: 1rem;
}

.journey__card__bg span{
  display: inline-block;
  margin-bottom: 4rem;
  font-size: 1.75rem;
  color: var(--primary-color);
}

.journey__card__bg h4{
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
}

.journey__card__content{
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 2rem;
  background-color: var(--primary-color);
  border-bottom-left-radius: 1rem;
   border-bottom-right-radius: 1rem;
   transition: 0.3s;
}
  .journey__card:hover .journey__card__content{
    top: 0;
  }

  .journey__card__content span{
    display: inline-block;
    margin-bottom: 1rem;
    padding: 7px 9px;
    font-size: 1rem;
    border: 2px solid var(--white);
    color: var(--white);
    border-radius: 100%;
  }

  .journey__card__content h4{
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
    color:var(--white);
  }

  .journey__card__bg p{
   color: var(--extra-light);
  }

  .showcase__container{
    display: grid;
    gap: 2rem;
    overflow: hidden;
    margin-top: 40px;
    padding-bottom: 70px;
  }
  
  .showcase__image img{
    max-width: 400px;
    margin-inline: auto;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
  }

  .showcase__content h4{
    margin-bottom: 2rem;
    font-size: 3rem;
    font-weight: 600;
    color: var(--text-dark);
  }

  .showcase__content p{
    margin-bottom: 1rem;
    color: var(--text-light);
  }

  .showcase__content .btn{
    width: 100%;
    margin-top: 2rem;
    padding: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    background-image: url(img/showcase2.jpeg);
    background-size: cover;
    background-position: center center;
    background-repeat: repeat;
    border-radius: 5px;
  }

  .banner__container{
    display: grid;
    gap: 2rem;
  }

  .stat-card {
   display: flex;
   width: 100%;
   flex-direction: row;
   align-items: center;
   text-align: center;
   padding: auto auto;
    text-align: center;
    gap: 1rem;
  }

.stat-container {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: end;
  padding: 2rem;
  flex: 1;

  /* default styles */
  visibility: visible; 
  transition: all 1s cubic-bezier(0.5, 0, 0, 1);
}

.stat-container.hidden {
  opacity: 0;
  transform: translateY(40px);
}

.stat-container.visible {
  opacity: 1;
  transform: translateY(0);
}

  .stat-icon {
    width: 80px; /* Adjust size as needed */
    height: 80px; /* Adjust size as needed */
    border-radius: 50%;
    background-color: #3C6E71; /* Dark teal background for the circle */
    color: #ffffff; /* White color for the icon */
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5em; /* Adjust icon size */
    margin-bottom: 10px;
  }

  .banner__card{
    display: flex;
    flex-direction: column;
    text-align: left;
    flex: 1.5;
  }

  .banner__card h4{
    font-size: 56px;
    font-weight: 800;
    color: #3C6E71;
    font-family: "Montserrat", sans-serif;
    letter-spacing: 3px;
  }

  .banner__card p{
    color: #7A7A7A;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 2px;
  }

  .discover__grid {
  margin-top: 4rem;
  display: grid;
  gap: 2rem;
}

.discover__card {
  padding: 2rem 1rem;
  text-align: center;
  transition: 0.3s;
  border-radius: 1rem;
}

.discover__card:hover {
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
}

.discover__card span {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 10px 15px;
  font-size: 1.5rem;
  color: var(--primary-color);
  background-color: rgba(40, 135, 255, 0.1);
  border-radius: 100%;
}

.discover__card h4 {
  max-width: 150px;
  margin-inline: auto;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
}

.destination__card p {
  color: var(--text-light);
}

footer {
  background-color: #284B63;
}

.footer__container {
  display: grid;
  gap: 4rem 2rem;
}

.footer__col p {
  max-width: 300px;
  margin-block: 2rem;
  color: var(--text-light);
}

.footer__socials {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer__socials a {
  display: inline-block;
  padding: 7px 10px;
  font-size: 1.25rem;
  color: var(--white);
  background-color: var(--primary-color);
  border-radius: 100%;
}

.footer__socials a:hover {
  background-color: var(--primary-color-dark);
}

.footer__col h4 {
  margin-bottom: 2rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
}

.footer__links {
  display: grid;
  gap: 1rem;
}

.footer__links a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
}

.footer__links a:hover {
  color: var(--primary-color);
}

.footer__links a span {
  font-size: 1.25rem;
}

.footer__col form {
  display: grid;
  gap: 1rem;
}

.footer__col input {
  padding: 0.75rem;
  font-size: 1rem;
  color: var(--text-dark);
  background-color: var(--white);
  border: 1px solid var(--text-light);
  border-radius: 5px;
}

.footer__col input::placeholder {
  color: var(--text-light);
}

.footer__col .btn {
  border-radius: 5px;
}

.footer__bar {
  padding: 1rem;
  font-size: 0.9rem;
  color: var(--text-light);
  text-align: center;
}

@media (width > 540px) {
  .journey__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .showcase__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .discover__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__container {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__col:last-child {
    grid-area: 2/1/3/2;
  }
}
  @media(width > 768px) {
    nav {
      position: static;
      padding: 2rem 1rem;
      max-width: var(--max-width);
      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(--text-dark);
}

.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: 75rem 2rem;
  background-color: var(--text-dark);
}
header{
  margin-top: 0;
}
.header__container{
  display: grid;
  grid-template-columns:
    minmax(0 ,1fr)
    repeat(6, minmax(0, calc(var(--max-width)/ 6)))
    minmax(0, 1fr) ;
}
.header__content{
grid-column: 2/5;
padding-block: 5rem;
}
.header__content :is(p, h1){
  text-align: left;
}
.header__btns{
  justify-content: flex-start;
}
.header__image{
  grid-column: 5/8;
  position: relative;
  isolation: isolate;
  height: 75%;
  margin-top: 10%;
  background-image: url("img/Hero_Image2.png");
  background-size: cover; /* Makes background fill */
  background-position: bottom; /* Aligns background to bottom */
  background-repeat: no-repeat;
}
.header__image img{
  position: absolute;
  z-index: 1; /* Makes sure the hero image is on top */
  top: 2rem;
  left: 0;
  height: 100%;
  width: unset;
}
.journey__grid{
  grid-template-columns: repeat(3, 1fr);
}
.showcase__container{
  grid-template-columns: repeat(4, 1fr);
}

.showcase__content{
  grid-column: 2/4;
} 
.discover__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer__container {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .footer__col:last-child {
    grid-area: unset;
  }
}
  

  @media (width > 1200px) {
  .header__content {
    padding-inline: 1rem 0;
  }
}




/* media screen size */
@media (min-width: 320px) {
  nav{
    position: relative;
    padding: 15px 30px;
  }
  .nav__header {
    flex: 1;
    padding: 0;
    background-color: transparent;
  }
  .nav__links {
      background-color: white;
      position: absolute;
      display: none;
      gap: 2rem;
  }
  .nav__links.open{
      display: flex;
  }
  .nav__links a, .nav__menu__btn, .nav__logo .logo {
      color: black;
      font-weight: 500;
  }
  .nav__logo .logo img{
      width: 200px;
  }
  .nav__btns .btn{
    padding: 0.75rem 1.5rem;
    background-color: #3C6E71;
    font-weight: 600;
  }
  .header__title{
    color: #284B64 !important;
    font-family: "Montserrat", sans-serif;
    margin-bottom: 1.5rem !important;
    font-size: 3.4em;
    font-weight: 800;
    line-height: 25px;
    letter-spacing: -2px;
    word-spacing: 0px;
  }
  .header__subtitle{
    color: #3C6E71 !important;
    font-family: "Montserrat", sans-serif;
    font-size: 3.7em;
    font-weight: 800;
    margin-bottom: 2.5rem !important;
    line-height: 25px;
    letter-spacing: -2px;
    word-spacing: 0px;
  }
  .vision-mission-container {
      flex-direction: column; /* Stacks cards vertically */
      width: 100%;
      gap: 60px;
  }

  .content-container {
      min-width: unset;
      width: 100%;
  }

  .partners-container {
      flex-direction: column;
      align-items: center;
  }

  .partners-label {
      margin-bottom: 10px;
  }
  .header__image img {
    height: 100%;
  }
  .header__image{
    height: 75%;
  }
  .hero-bg {
    height: 160vh;
    background-image: linear-gradient(90deg, #FEFBEA 100%);
  }
  .header__content {
    padding: 0rem 1rem 4rem 1rem;
    text-align: center;
  }
  .slider {
    display: flex;
    width: calc(100% * 3); /* Adjust based on the number of slides */
    transition: transform 0.5s ease-in-out;
    height: 240px;
  }
  .slider-container {
    position: relative;
    width: 80%; /* Adjust as needed */
    height: 240px; /* Adjust as needed */
    overflow: hidden;
    margin: 30px auto 20px auto;
    border-radius: 10px; /* Optional: for rounded corners */
    animation: slideUp 1.5s ease-in-out forwards;
  }
  .banner__container{
    grid-template-columns: repeat(1, 1fr);
  }
  .destination__flex{
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 2rem;
  }
  .destination__card__details h4{
    margin-bottom: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    columns: var(--text-dark);
  }
  .showcase__border{
    position: relative;
    background-color: #284B63;
    margin-top: 0px;
    width: 100%;
    z-index: 2;
    border-radius: 0px 0px 50px 50px;
  }
  .service_container{
    padding: 3rem 1rem 0rem 1rem;
  }

  .service_container .card {
    background: #fdfdf5;
    border-radius: 35px;
    padding: 2rem 1rem;
    color: #1c2d3c;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
  }

  .service_container .card.show {
    animation: fadeUp 0.8s ease forwards;
  }

  .service_container .card.show:nth-child(1) {
    animation-delay: 0.2s;
  }
  .service_container .card.show:nth-child(2) {
    animation-delay: 0.4s;
  }
  .service_container .card.show:nth-child(3) {
    animation-delay: 0.6s;
  }
  .service_container .card.show:nth-child(4) {
    animation-delay: 0.8s;
  }

  @keyframes fadeUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .service_container .card .icon-container2:hover{
    transform: scale(1.1);
    transition: transform 0.3s ease;
  }

  .service_container .card1 {
    background: #fefbea;
  }

  .service_container .card2 {
    background: #3C6E71;
    color: #fff;
  }

  .service_container .card3 {
    background: #173346;
    color: #fff;
  }

  .service_container .card4 {
    background: #FFFFFF47;
    color: #fff;
  }

  .icon-container2 i {
    font-size: 1.8rem;
    color: #fff;
  }

  .card1 h2 {
    color: #1c2d3c !important;
  }

  .card2 h2, .card3 h2, .card4 h2 {
    color: #fff !important;
  }

  .card1 p {
    color: #1c2d3c !important;
    text-align: center !important;
  }

  .card2 p, .card3 p, .card4 p {
    color: #f0f0f0 !important;
    text-align: center !important;
  }

  /* Learn More Link */
  .card a {
    display: inline-flex;
    align-items: center;
    margin-top: 1rem;
    font-weight: 600;
    color: inherit;
    text-decoration: none;
  }

  .card a:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
  }

  .card a i {
    margin-right: 0.5rem;
  }

  .card a i::before {
    font-size: 22px;
  }

  .icon-container2 {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #2f4a60;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
  }

  .icon-container2 i::before{
    font-size: 45px;
  }

  .icon-container2.icon2 i::before{
    font-size: 45px;
    color: #19394c;
  }

  .icon-container2.icon1 {
    background: #173346;
  }

  .icon-container2.icon2 {
    background: #fefbea;
  }
  .icon-container2.icon3 {
    background: #3C6E71;
  }
  .icon-container2.icon4 {
    background: #173346;
  }
  .product__container {
    background-color:  #FEFBEA;
    padding: 3rem 1rem 10rem 1rem;
  }
  .product__container .section__header{
    color: #284B63;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-family: "Montserrat", sans-serif;
  }
  .product__flex{
    margin-top: 2rem;
    padding: 1rem 2rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  .product__card {
    background: transparent;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
  }
  .product__card:hover {
    transform: translateY(-5px);
  }
  .product__card__details1{
    padding: 1rem 1rem;
    text-align: center;
    color: white;
    background-color: #3c6e71;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1em;
    line-height: 20px;
  }
  .product__card__details2{
    padding: 1rem 1rem;
    text-align: center;
    color: white;
    background-color: #284b63;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1em;
    line-height: 20px;
  }
  .procedure__container{
    margin-top: -8rem;
    padding: 2rem 3rem;
    background-color: #3C6E71;
    border-radius: 50px;
    width: 90%;
    margin-left: 5%;
    margin-right: 5%;
  }
  .procedure__container .section__header{
    color: #FEFBEA;
    font-size: 2.8rem;
    margin-bottom: 0rem;
    font-family: "Montserrat", sans-serif;
    text-align: center;
  }
  .procedure__container .section__description{
    color: #f0f0f0;
    text-align: center;
    margin-bottom: 0rem;
    margin-top: 0rem;
  }
  .procedure_parent_flex{
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  .procedure_child1_flex{
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;    
  }
  .procedure_child2_flex{
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;    
    text-align: center;
  }
  .procedure_step{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .procedure_step .icon-container2:hover{
    transform: scale(1.1);
    transition: transform 0.3s ease;
  }
  .step-icon-separator{
    display: none;
  }
  .procedure_step h4{
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 25px;
    font-family: "Montserrat", sans-serif;
    color: var(--white);
  }
  .procedure_step p{
    color: var(--white);
    text-align: center;
  }
  .contact-section .section-header h3{
    color:#284B63;
    font-size: 48px;
    font-family: "Montserrat", sans-serif;
  }
  .contact-info{
    background-color: #284B63;
    border-radius: 5%;
  }
  .contact-form{
    background-color: #284B63;
    border-radius: 5%;
  }
}
@media (min-width: 576px) {
  .header__image img {
    width: 100%;
    padding: 0 10%;
  }
  .hero-bg {
    height: 162vh;
  }
  .header__content {
    padding: 0rem 1rem 4rem 1rem;
  }
  .slider {
    display: flex;
    width: calc(100% * 3); /* Adjust based on the number of slides */
    transition: transform 0.5s ease-in-out;
    height: 275px;
  }
  .slider-container {
    position: relative;
    width: 75%; /* Adjust as needed */
    height: 275px; /* Adjust as needed */
    overflow: hidden;
    margin: 30px auto 20px auto;
    border-radius: 10px; /* Optional: for rounded corners */
    animation: slideUp 1.5s ease-in-out forwards;
  }
  .service_container{
    padding: 5rem 1rem 0rem 1rem;
  }
}
@media (min-width: 768px) {
  .procedure__container{
    width: 95%;
    margin-left: 2.5%;
    margin-right: 2.5%;
  }
  .procedure__container .section__header{
    text-align: left;
  }
  .procedure__container .section__description{
    text-align: left;
  }
  .procedure_parent_flex{
    display: flex;
    flex-direction: row;
    gap: 1rem;
  }
  .procedure_child1_flex{
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 1rem;    
  }
  .procedure_child2_flex{
    flex: 4;
    display: flex;
    flex-direction: row;
    gap: 0rem;    
  }
  .product__flex{
    grid-template-columns: repeat(3, 1fr);
  }
  .card1 p {
    text-align: left !important;
  }

  .card2 p, .card3 p, .card4 p {
    text-align: left !important;
  }
  .service_container .card {
    display: flex;
    flex-direction: column; /* stack children vertically */
    align-items: start;    /* center horizontally */
  }
  .service_container{
    padding: 7rem 1rem 0rem 1rem;
  }
  .destination__flex{
    margin-top: 2rem;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .slider {
    display: flex;
    width: calc(100% * 3); /* Adjust based on the number of slides */
    transition: transform 0.5s ease-in-out;
    height: 200px;
  }
  .slider-container {
    position: relative;
    width: 350px; /* Adjust as needed */
    height: 200px; /* Adjust as needed */
    overflow: hidden;
    margin: 30px 0 20px 0;
    border-radius: 10px; /* Optional: for rounded corners */
    animation: slideUp 1.5s ease-in-out forwards;
  }
  .header__content{
    padding: 4rem 1rem;
    text-align: left;
  }
  .hero-bg {
    height: 110vh;
    background-image: linear-gradient(90deg, #FEFBEA 83%, #3C6E71 10%);
  }
  .nav__links {
      position: static;
      display: flex;
      gap: 1.5rem;
  }
  .nav__logo .logo img{
      width: 150px;
  }
  .nav__btns .btn{
    padding: 0.75rem 0.75rem;
  }
  nav{
    padding: 15px 15px;
  }
  .vision-mission-container {
      flex-direction: row;
      width: 100%;
      justify-content: center;
      gap: 20px;
  }
  .logo-swiper {
      overflow-x: hidden; /* Disables horizontal scrolling on larger screens */
      scroll-snap-type: none; /* Removes snap behavior */
  }

  .swiper-slides {
      transition: transform 0.5s ease-in-out; /* Re-enable smooth transition for auto-slide */
  }
  .header__image img {
    height: 85%;
    padding: 0 0;
  }
  .header__image{
    height: 65%;
  }
  .header__title {
    font-size: 3.2em;
    letter-spacing: -3.7px;
    line-height: 50px;
  }
  .header__subtitle {
    font-size: 3.6em;
    letter-spacing: -3.7px;
    line-height: 15px;
  }
  .banner__container{
    grid-template-columns: repeat(2, 1fr);
  }
  .destination__card__details h4{
    margin-bottom: 5px;
    font-size: 1.2rem;
    font-weight: 600;
    columns: var(--text-dark);
  }
  .showcase__border{
    position: relative;
    background-color: #284B63;
    margin-top: -50px;
    width: 100%;
    z-index: 2;
  }
}
@media (min-width: 992px) {
  .product__flex{
    grid-template-columns: repeat(4, 1fr);
  }
  .nav__links {
      gap: 3rem;
  }
  .nav__logo .logo img{
      width: 230px;
  }
  .nav__btns .btn{
    padding: 0.75rem 1.5rem;
  }
  nav {
    padding: 15px 30px;
  }
  .header__image img {
    height: 90%;
  }
  .header__image{
    height: 70%;
  }
  .header__title {
    font-size: 3.5em;
    letter-spacing: -3.7px;
    line-height: 61px;
  }
  .header__subtitle {
    font-size: 4em;
    letter-spacing: -3.7px;
    line-height: 61px;
  }
  .header__btns button {
    padding: 20px 50px 20px 50px !important;
  }
  .play-button {
    width: 50px !important;
    height: 50px !important;
  }
  .banner__container{
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1200px) {
  .procedure__container{
    width: 75%;
    margin-left: 12.5%;
    margin-right: 12.5%;
  }
  .step-icon-separator{
    display: block;
    padding-top: 2rem;
  }
  .step-icon-separator i{
    font-size: 2rem;
    color: #FFFFFF;
    margin: 0rem 1rem;
    align-self: center;
  }
  .product__flex{
    grid-template-columns: repeat(5, 1fr);
  }
  .destination__flex {
    gap: 2rem;
  }
  .header__image img {
    height: 100%;
  }
  .header__image{
    height: 75%;
  }
  .header__title {
    font-size: 4.8em;
    letter-spacing: -3.7px;
  }
  .header__subtitle {
    font-size: 6em;
    letter-spacing: -3.7px;
  }
}
@media (min-width: 1400px) {
  
}
.hero-bg {
  background-size: cover;
  background-position: center;
  position: relative;
}
/* ----------------------Top bar ------------------- */
.top-bar {
  background-color: #284B64;
  color: white;
  padding: 0;
  font-size: 14px;
}
.top-bar .container {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  padding: 20px 0 55px 0;
}
.top-bar span {
  margin-right: 15px;
}

/* -----------Navigation menu container------------------- */
nav {
  background-color: white;
  margin: -35px auto 0; /* Negative margin to "step down" from top-bar */
  border-radius: 50px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo, .nav__links a {
font-weight: 500;
}

/* ----------------------Learn More button styling------------------ */
.header__btns button {
  background-color: #3C6E71;
  color: white;
  font-family: "Montserrat", sans-serif;
  box-shadow: 3px -3px 0px 0px #284B63;
  border-style: solid;
  border-width: 1px 1px 1px 1px;
  border-color: #284B63;
  border-radius: 60px 60px 60px 60px;
  padding: 12px 24px;
  cursor: pointer;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1em;
  line-height: 15px;
  transition: background-color 0.3s ease;
}
.header__btns button:hover {
  background-color: #3C6E71;
  transform: scale(1.1);
}

.header__btns .btn2 {
  background-color: #284B63;
  color: white;
  font-family: "Montserrat", sans-serif;
  box-shadow: 3px -3px 0px 0px #114c50;
  border-style: solid;
  border-width: 1px 1px 1px 1px;
  border-color: #114c50;
  border-radius: 60px 60px 60px 60px;
  padding: 12px 24px;
  cursor: pointer;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1em;
  line-height: 15px;
  transition: background-color 0.3s ease;
}
.header__btns .btn2:hover {
  background-color: #284B63;
  transform: scale(1.1);
}


/*---------------------- Play button styling------------------------ */
.play-button {
width: 40px;
height: 40px;
background-color: #314457;
border-radius: 50%;
position: relative;
border: none;
cursor: pointer;
overflow: visible; /* This hides the pseudo-element when it's outside the button */
}

/* Play icon styling */
.play-icon {
color: #fff;
font-size: 20px;
position: absolute;
top: 50%;
left: 55%;
transform: translate(-55%, -50%);
}

/* Pseudo-element for the animation */
.play-button::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border-radius: inherit;
background-color: #3c5457; /* The color of the outer rings */
z-index: -1;
/* Apply the animation */
animation: pulse 1.5s infinite;
}

/* Keyframe animation definition */
@keyframes pulse {
0% {
  transform: scale(1);
  opacity: 1;
}
100% {
  transform: scale(1.5);
  opacity: 0;
}
}

/*----------------------Watch Video text styling------------------------ */
.watch-video {
border-radius: 50px;
font-weight: 600;
font-size: 1em;
line-height: 15px;
color: #284B63;
margin-left: -10px;
}

/*----------------------Slider container styling------------------------ */
.slide {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  font-size: 20px;
  z-index: 10;
}

.left-arrow {
  left: 10px;
  border-radius: 5px 0 0 5px;
}

.right-arrow {
  right: 10px;
  border-radius: 0 5px 5px 0;
}

@keyframes slideUp {
  from {
      transform: translateY(100%);
      opacity: 0;
  }
  to {
      transform: translateY(0);
      opacity: 1;
  }
}

/*----------------------About us - Quality policy Section Styling------------------------ */
.excellence-section {
  position: relative;
  background-color: var(--primary-bg);
  color: var(--text-color);
  padding: 5% 0px 1rem 0px;
  margin-top: -10vh;
  overflow: hidden; /* Ensures no content overflows */
}

/* Decorative Background Element */
.background-top {
  background-color: #284B63;
  z-index: 3;
  display: flex;
  flex-direction: row;
  border-radius: 50px 50px 50px 50px;
  margin-top: -42px;
  margin-bottom: 0px;
  margin-left: 0px;
  margin-right: 0px;
  padding-top: 12vh;
  padding-bottom: 12vh;
  padding-left: 0px;
}

/* Main Container */
.background-top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-left: 10%;
  padding-right: 10%;
  margin: 0 auto;
  flex-wrap: wrap; /* Allows wrapping on smaller screens */
  gap: 8vh;
  position: relative;
  z-index: 1; /* Keep content on top of background */
}

/* Cards (Vision & Mission) */
.vision-mission-container {
  display: flex;
  flex: 1;
  min-width: 280px;
  margin: 0 15px;
}

.card {
  background-color: var(--vision-bg);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
}

.vision-card {
  background-color: #173346;
  border-style: none;
  border-style: none;
  border-radius: 30px 30px 30px 30px;
  margin-top: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  margin-right: 0px;
  padding-top: 0px;
  padding-bottom: 40px;
  padding-left: 20px;
  padding-right: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center; 
  flex: 1;
}

.mission-card {
  background-color: #3C6E71;
  border-style: none;
  border-style: none;
  border-radius: 30px 30px 30px 30px;
  margin-top: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  margin-right: 0px;
  padding-top: 0px;
  padding-bottom: 40px;
  padding-left: 20px;
  padding-right: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center; 
  flex: 1;
}

.card h2 {
  margin: 10px 0 5px;
  color: #EAEAEA;
}

.card p{
text-align: justify;
color: #EAEAEA;
}

.icon-container {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  width: 100px;
  margin-top: -35px;
  height: 100px;
}

.icon-container.mission {
  background-color: #173346;
}

.icon-container.vision {
  background-color: #3C6E71;
}

.icon-container i {
  font-size: 3rem;
  color: var(--white);
}

/* Right Content (Title, Text, Partners) */
.content-container {
  flex: 1;
  min-width: 400px;
}

.content-container h1 {
  font-size: 45px;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
  font-family: "Montserrat", sans-serif;
}

.content-container .description {
  font-size: 16px;
  color: #EAEAEA;
  font-family: 'Roboto', sans-serif;
  margin-bottom: 15px;
  text-align: justify;
  line-height: 1.6;
}

.separator-dots {
width: 100%;
height: 2px;
background-image: radial-gradient(circle, #ccc 1px, transparent 1px);
background-size: 8px 100%;
background-repeat: repeat-x;
margin: 15px 0;
}

.separator-dots-green {
width: 100%;
height: 5px;
background-image: radial-gradient(circle, #3C6E71 2px, transparent 2px);
background-size: 8px 100%;
background-repeat: repeat-x;
margin: 15px 0;
}

/* Partners Swiper - Default for smaller screens */
.partners-container {
  width: 100%;
  display: flex;
  flex-direction: row;
  overflow: hidden;
  background: transparent;
  padding: 10px 0;
  gap: 20px;
}

.partners-label {
  font-weight: bold;
  margin: 0px;
  font-size: 19px;
  color: #FFFFFF;
  font-family: 'Montserrat', sans-serif;
  line-height: 1.5;
}

.logo-swiper {
  width: 375px; /* 3 logos * 150px + gaps */
  overflow: hidden;
  margin: auto;
}

.swiper-slides {
  display: flex;
  gap: 25px; /* adjust spacing */
  animation: scroll 12s linear infinite;
}

.logo-slide {
  flex: 0 0 auto;   /* prevent shrinking */
  width: 100px;     /* logo width */
}

.logo-slide img {
  max-height: 50px;
  display: block;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}


/*-----------------------------------------------
|   Contact Us
-----------------------------------------------*/

.page-section#contact {
  padding: 10rem 0 3rem 0;
  margin-bottom: 10rem;
}

.contact .info-wrap {
  margin-bottom: 5%;
  background-color: #ffffff;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  border-top: 3px solid #f99f0b;
  border-bottom: 3px solid #f99f0b;
  height: 100%;
}

.contact .info-wrap a {
  text-decoration: none;
  color: inherit;
}

iframe {
  border: 0;
  margin: 4%;
  width: 92%;
  border-radius: 20px;
}

.option-hint {
  color: darkgrey;
}

.contact .info-item {
  margin-bottom: 40px;
}

.contact .info-item i {
  color: #f99f0b;
  background: color-mix(in srgb, #f99f0b, transparent 92%);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .info-item:hover i {
  background: #f99f0b;
  color: #ffffff;
}

.contact .php-email-form {
  background-color: #ffffff;
  height: 100%;
  padding: 30px;
  border-top: 3px solid #f99f0b;
  border-bottom: 3px solid #f99f0b;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form input[type=tel],
.contact .php-email-form select[name=Service],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: #444444;
  background-color: color-mix(in srgb, #ffffff, transparent 50%);
  border-color: color-mix(in srgb, #444444, transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus,
.contact .php-email-form input[type=tel]:focus,
.contact .php-email-form select[name=Service]:focus {
  border-color: #f99f0b;
  box-shadow: none;
  background-color: #ffffff;
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, #444444, transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: #ffffff;
  background: #f99f0b;
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, #f99f0b, transparent 25%);
}

.contact .col-md-6,
.contact .col-md-12 {
  padding-bottom: 12px;
}

.checkbox-group {
  display: flex;
  flex-direction: column;
}

.checkbox-group label {
  margin-bottom: 5px;
}

.button-container {
  text-align: center;
}

.contact .container-title {
  width: 100%;
  padding-right: 8% !important;
  padding-left: 8% !important;
}

.contact .col-lg-5,
.contact .col-lg-7 {
  padding-left: 0 !important;
}

.contact .container-title h2 {
  margin-left: 0 !important;
}

.carousel-content .order-col-two {
  margin-bottom: 25px;
}

.btn-row {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: center;
  align-items: center;
}

.project-section {
  transition: height 0.3s ease;
}

.btn-l {
  padding: 0.85rem 2.25rem;
  font-size: .95rem;
  font-weight: 700;
  border: none;
  border-radius: 10px;
}

#top.main{
  overflow-x: hidden;
}

.footer-start, .footer-end{
  background-color: #fff1da;
}

.footer-text{
  color: #212832;
}


.first-field{
  margin-top: 0px !important;
  margin-bottom: 0px !important;
}

.field:not(:first-child) {
  margin-top: 10px !important;
  margin-bottom: 30px !important;
}


/* loader and toast */
.loader {
	position: fixed;
	top: 40% !important;
	left: 45% !important;
	transform: translate(-50%, -50%);
	z-index: 9999;
	margin: auto;
	border: 20px solid #EAF0F6;
	border-radius: 50%;
	border-top: 20px solid #F1A501;
	width: 200px;
	height: 200px;
	animation: spinner 4s linear infinite;
	visibility:hidden;
  }

  @keyframes spinner {
	0% {
	  transform: rotate(0deg)
	}
  
	100% {
	  transform: rotate(360deg)
	}
  }


  .toast {
	visibility: hidden;
	min-width: 250px !important;
	margin-left: -125px !important;
	background-color: #333 !important;
	color: #fff !important;
	text-align: center !important;
	border-radius: 2px !important;
	position: fixed !important;
	z-index: 9999 !important;
	left: 50% !important;
	bottom: 30px !important;
	font-size: 17px !important;
	box-shadow: 0px 0px 10px #000 !important;
	padding: 16px !important;
	opacity: 1 !important;
  }
  
  .toast.show {
	visibility: visible;
	-webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
	animation: fadein 0.5s, fadeout 0.5s 2.5s;
  }

  
@-webkit-keyframes fadein {
	from {
	  bottom: 0;
	  opacity: 0;
	}
  
	to {
	  bottom: 30px;
	  opacity: 1;
	}
  }
  
  @keyframes fadein {
	from {
	  bottom: 0;
	  opacity: 0;
	}
  
	to {
	  bottom: 30px;
	  opacity: 1;
	}
  }
  
  @-webkit-keyframes fadeout {
	from {
	  opacity: 1;
	}
  
	to {
	  opacity: 0;
	}
  }
  
  @keyframes fadeout {
	from {
	  opacity: 1;
	}
  
	to {
	  opacity: 0;
	}
}

/* Contact Us */
/* --- Contact Section --- */
.contact-section {
  background: #fff;
  padding: 60px 30px;
  font-family: 'Poppins', sans-serif;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h3 {
  font-size: 2rem;
  font-weight: bold;
  color: #333;
}

.section-header p {
  color: #555;
  font-size: 1rem;
  max-width: 600px;
  margin: 10px auto 0;
}

/* Layout */
.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.contact-info {
  flex: 1 1 350px;
}

.contact-form {
  flex: 1 1 400px;
  padding: 2% 4%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

/* Info Items */
.info-item {
  display: flex;
  align-items: flex-start;
  margin-top: 20px;
  margin-left: 4%;
  margin-right: 4%;
}

.info-item i {
  font-size: 1.5rem;
  color: #007bff;
  margin-right: 12px;
}

.info-item h4 {
  font-size: 1.1rem;
  margin: 0 0 5px;
  color: #fff;
  font-weight: 800;
  font-family: 'Montserrat', sans-serif;
}

.info-item a {
  color: #fff;
  text-decoration: none;
}

.info-item a:hover {
  text-decoration: underline;
}

/* Form Styles */
.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.form-group label {
  font-weight: 500;
  margin-bottom: 5px;
  color: #fff;
}

.form-group input,
.form-group select,
.form-group textarea {
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 10px;
  font-size: 1rem;
  outline: none;
  transition: 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #007bff;
}

.text-center {
  text-align: center;
  margin-top: 15px;
}

button {
  background: #007bff;
  color: white;
  border: none;
  padding: 10px 25px;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background: #0056b3;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }
}

  /* Scroll to Top Button */
  .scroll-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    padding-left: 12px;
    padding-right: 12px;
    background: rgba(18, 18, 18, 0.65);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--primary);
    border-radius: 5%;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    display: grid;
    place-items: center;
    cursor: pointer;
    opacity: 0;
    transform: translateY(15px);
    pointer-events: none;
    transition: all 0.4s ease;
    z-index: 999;
  }

  .scroll-to-top svg {
    width: 36px;
    height: 36px;
    fill: #ffffff;
  }

  .scroll-to-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .scroll-to-top:hover {
    background-color: rgba(18, 18, 18, 0.65);
  }

  .scroll-to-top:hover svg {
    fill: white;
    transform: translateY(-2px);
    transition: transform 0.2s ease;
  }

  @media (max-width: 500px) {
    .scroll-to-top {
      width: 48px;
      height: 48px;
      bottom: 16px;
      right: 16px;
    }
  }


/* Careers Section Media Queries */
.careers-section {
  display: flex;
  justify-content: center;
  padding: 50px 0;
  background: #f9f9f9;
  font-family: 'Montserrat', sans-serif;
  min-height: 60vh;
}

.careers-container {
  display: flex;
  width: 90%;
  max-width: 1200px;
  gap: 30px;
}

/* --- LEFT JOB LIST --- */
.job-list {
  flex: 1;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  padding: 20px;
  overflow-y: auto;
  max-height: 600px;
}

.job-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.job-list li {
  padding: 15px;
  border-bottom: 1px solid #eee;
  cursor: pointer;
  transition: background 0.2s ease;
}

.job-list li:hover, .job-list li.active {
  background: #eaf3ff;
}

.job-list h4 {
  margin: 0 0 5px;
  font-weight: 600;
  color: #333;
}

.job-list p {
  margin: 0;
  color: #666;
  font-size: 0.9rem;
}

.pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
}

.pagination button {
  padding: 8px 16px;
  border: none;
  background: #0078ff;
  color: white;
  border-radius: 6px;
  cursor: pointer;
}

.pagination button:disabled {
  background: #ccc;
  cursor: not-allowed;
}

/* --- RIGHT JOB DETAILS --- */
.job-details {
  flex: 2;
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  overflow-y: auto;
  max-height: 600px;
}

.job-details h2 {
  color: #0078ff;
  margin-bottom: 10px;
}

.job-details p {
  color: #444;
  line-height: 1.6;
}

.apply-btn {
  background: #0078ff;
  color: #fff;
  padding: 10px 18px;
  border: none;
  border-radius: 6px;
  margin-top: 20px;
  cursor: pointer;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  .careers-container {
    flex-direction: column;
  }

  .job-list, .job-details {
    max-height: none;
    width: 100%;
  }

  .job-list {
    order: 1;
    margin-bottom: 20px;
  }

  .job-list li {
    border: 1px solid #eee;
    border-radius: 10px;
    margin-bottom: 10px;
  }

  .pagination {
    justify-content: center;
    gap: 10px;
  }

  .job-details {
    order: 2;
  }

  .job-details h2 {
    font-size: 1.2rem;
  }

  .apply-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .careers-section {
    padding: 30px 10px;
  }

  .job-list li {
    padding: 12px;
  }

  .job-list h4 {
    font-size: 1rem;
  }

  .job-list p {
    font-size: 0.8rem;
  }

  .job-details {
    padding: 20px;
  }

  .job-details p {
    font-size: 0.9rem;
  }
}


/* loader and toast */
.loader {
	position: fixed;
	top: 40% !important;
	left: 45% !important;
	transform: translate(-50%, -50%);
	z-index: 9999;
	margin: auto;
	border: 20px solid #EAF0F6;
	border-radius: 50%;
	border-top: 20px solid #1458e0;
	width: 200px;
	height: 200px;
	animation: spinner 4s linear infinite;
	visibility:hidden;
  }

  @keyframes spinner {
	0% {
	  transform: rotate(0deg)
	}
  
	100% {
	  transform: rotate(360deg)
	}
  }


  .toast {
	visibility: hidden;
	min-width: 250px !important;
	margin-left: -125px !important;
	background-color: #333 !important;
	color: #fff !important;
	text-align: center !important;
	border-radius: 2px !important;
	position: fixed !important;
	z-index: 9999 !important;
	left: 50% !important;
	bottom: 30px !important;
	font-size: 17px !important;
	box-shadow: 0px 0px 10px #000 !important;
	padding: 16px !important;
	opacity: 1 !important;
  }
  
  .toast.show {
	visibility: visible;
	-webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
	animation: fadein 0.5s, fadeout 0.5s 2.5s;
  }

  
@-webkit-keyframes fadein {
	from {
	  bottom: 0;
	  opacity: 0;
	}
  
	to {
	  bottom: 30px;
	  opacity: 1;
	}
  }
  
  @keyframes fadein {
	from {
	  bottom: 0;
	  opacity: 0;
	}
  
	to {
	  bottom: 30px;
	  opacity: 1;
	}
  }
  
  @-webkit-keyframes fadeout {
	from {
	  opacity: 1;
	}
  
	to {
	  opacity: 0;
	}
  }
  
  @keyframes fadeout {
	from {
	  opacity: 1;
	}
  
	to {
	  opacity: 0;
	}
  }

  .h-captcha iframe{
    padding: 0% !important;
    margin: 0% 0% 2% 0% !important;
  }