/* HOMEPAGE OR INDEX PAGE CSS*/

/* REUSED CSS STARTS HERE */
@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap");

  *,
  *::before,
  *::after {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
  }
  
   
:root {
    font-family: 'Nunito', sans-serif;
 }


:root {
    --primary: hsl(9, 100%, 62%);
    --secondary: hsl(9, 100%, 62%);
    --light: #F5F5F5;
    --dark: #14141F;
    --dark-jungle-green: hsl(188, 63%, 7%);
  --prussian-blue: hsl(200, 69%, 14%);
  --raisin-black-1: hsl(227, 29%, 13%);
  --raisin-black-2: hsl(229, 17%, 19%);
  --yellow-green: hsl(9, 100%, 62%);
  --orange-soda: hsl(9, 100%, 62%);
  --cultured-1: hsl(0, 0%, 93%);
  --cultured-2: hsl(192, 24%, 96%);
  --misty-rose: hsl(7, 56%, 91%);
  --alice-blue: hsl(210, 100%, 97%);
  --seashell: hsl(8, 100%, 97%);
  --cadet: hsl(200, 15%, 43%);
  --white: hsl(0, 0%, 100%);
  --black: hsl(0, 0%, 0%);
  --opal: hsl(180, 20%, 62%);
  --ff-nunito-sans: "Nunito Sans", sans-serif;
  --ff-poppins: "Poppins", sans-serif;
    --header-height: 3.5rem;
    --first-color: hsl(9, 100%, 62%);
    --title-color: hsl(230, 75%, 15%);
    --text-color: hsl(230, 12%, 40%);
    --body-color: hsl(230, 100%, 98%);
    --container-color: hsl(230, 100%, 97%);
    --border-color: hsl(230, 25%, 80%);
    --h2-font-size: 1.25rem;
    --normal-font-size: .938rem;
    --font-regular: 400;
    --font-medium: 500;
    --font-semi-bold: 600;
    --z-fixed: 100;
    --z-modal: 1000;

  --fs-1: 1.875rem;
  --fs-2: 1.5rem;
  --fs-3: 1.375rem;
  --fs-4: 1.125rem;
  --fs-5: 0.875rem;
  --fs-6: 0.813rem;
  --fs-7: 0.75rem;

  --fw-500: 500;
  --fw-600: 600;
  --fw-700: 700;

    --transition: 0.25s ease;

  --section-padding: 20px;

  --shadow-1: 0 5px 20px 0 hsla(219, 56%, 21%, 0.1);
  --shadow-2: 0 16px 32px hsla(188, 63%, 7%, 0.1);
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: hsl(9, 100%, 62%);
}

.section-title::before {
    position: absolute;
    content: "";
    width: calc(100% + 80px);
    height: 2px;
    top: 4px;
    left: -40px;
    background: hsl(9, 100%, 62%);
    z-index: -1;
    color: hsl(9, 100%, 62%);
}

.section-title::after {
    position: absolute;
    content: "";
    width: calc(100% + 120px);
    height: 2px;
    bottom: 5px;
    left: -60px;
    background: hsl(9, 100%, 62%);
    z-index: -1;
}

.section-title.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}

.section-title.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}


.fw-medium {
    font-weight: 600 !important;
}

.fw-semi-bold {
    font-weight: 700 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

 

/*** Button ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 0px;
}






/* NAVBAR SECTIONS START HERE */
.navbar-light .navbar-nav .nav-link {
    font-family: 'Nunito', sans-serif;
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    color: #FFFFFF !important;
    font-size: 18px;
    font-weight: 600;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary) !important;
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 45px;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: #FFFFFF;
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--dark) !important;
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(256, 256, 256, .1);
        z-index: 999;
    }
    
    .sticky-top.navbar-light {
        position: fixed;
        background: #FFFFFF;
    }

    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--primary);
        transition: .5s;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        width: calc(100% - 2px);
        left: 1px;
    }

    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }
}


/*** customized navbar ***/
.topbbar{
    background-color: #202327;
    padding-left: 1px;
    padding-right: 2rem;
    font-family: 'Nunito', sans-serif;
}

.topbbar h5{
    color: #fff;
    padding: 2rem;
    font-size: 3rem;
}

.logo-img{
    width: 120px;
    height: 110px;
    padding: 3px;
}

.navbar{
    background: #fff;
}


.navbar-dark .navbar-nav .nav-link {
    font-family: 'Nunito', sans-serif;
    position: relative;
    margin-left: 25px;
    padding: 30px 0;
    color: rgb(26, 24, 24);
    font-size: 18px;
    font-weight: 600;
    outline: none;
    transition: .5s;
}



.sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar-dark .navbar-brand h1 {
    color: #1466e2;
    font-size: 2rem;
}

.navbar-dark .navbar-toggler {
    color: var(--primary) !important;
    border-color: var(--primary) !important;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-dark {
        position: fixed;
        background: #FFFFFF;
        width: 100%;
    }

    .navbar-dark .navbar-nav .nav-link,
    .navbar-dark .navbar-nav .nav-link.show,
    .sticky-top.navbar-dark .navbar-nav .nav-link {
        padding: 10px 0;
        color: var(--dark);
    }

  }

@media (min-width: 992px) {
    .navbar-dark {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(256, 256, 256, .1);
        z-index: 999;
    }
    
    .sticky-top.navbar-dark {
        position: fixed;
        background: #FFFFFF;
    }

    .navbar-dark .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: 6px;
        left: 50%;
        background: var(--primary);
        transition: .5s;
    }

    .navbar-dark .navbar-nav .nav-link:hover::before,
    .navbar-dark .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0;
    }

    .navbar-dark .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }

}

@media (max-width: 600px) {
    .logo-img{
        width: 100px;
        height: 100px;
        padding: 3px;
    }

    .navbar-dark .navbar-brand h1 {
        color: hsl(9, 100%, 62%);
        font-size: 1.5rem;
    }

}

@media (max-width: 760px) {
    .topbbar{
        display: none;
    }

}

/* NAVBAR SECTIONS END HERE */




/* HOMEPAGE SECTION STARTS HERE */
.slider{
    width: 100%;
    height: 95vh;
    margin: auto;
    position: relative;
    overflow: hidden;
    background: linear-gradient(
    to right,
    rgba(2, 82, 89, 0.9),
    rgba(255, 255, 255, 0)
  );
}
.slider .list{
    position: absolute;
    width: max-content;
    height: 100%;
    left: 0;
    top: 0;
    display: flex;
    transition: 1s;
}
.slider .list img{
    width: 1400px;
    max-width: 100vw;
    height: 100%;
    object-fit: cover;
}
.slider .buttons{
    position: absolute;
    top: 45%;
    left: 5%;
    width: 90%;
    display: flex;
    justify-content: space-between;
}
.slider .buttons button{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #fff5;
    color: #fff;
    border: none;
    font-family: monospace;
    font-weight: bold;
}
.slider .dots{
    position: absolute;
    bottom: 10px;
    left: 0;
    color: #fff;
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}
.slider .dots li{
    list-style: none;
    width: 10px;
    height: 10px;
    background-color: #fff;
    margin: 10px;
    border-radius: 20px;
    transition: 0.5s;
}
.slider .dots li.active{
    width: 30px;
}
@media screen and (max-width: 768px){
    .slider{
        height: 75vh;
    }
}

    
.hero {
    position: relative;
    top: 50%;
    left: 50%;
    z-index: 1;
    color: #fff;
    text-align: center;
    height: 120vh;
    padding: 0 13%;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, .75);
    -webkit-transform: translate3d(-50%, -50%, 0);
    -moz-transform: translate3d(-50%, -50%, 0);
    -ms-transform: translate3d(-50%, -50%, 0);
    -o-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
    background: linear-gradient(
    to right,
    rgba(2, 82, 89, 0.9),
    rgba(255, 255, 255, 0)
  );
 }
hgroup{
  padding-top: 20rem;
}
 .hero h1 {
    font-size: 60px;
    margin: 0;
    padding: 0;
    text-transform: uppercase;
    color: #fff;
}

.hero h3 {
    font-size: 36px;
    margin: 0;
    padding: 0;
    color: #fff;
}

.hero button {
    margin-top: 30px;
    background: #42a5f6;
    font-size: 20px;
    padding: 10px 20px;
    outline: none;
}


@media screen and (max-width: 1071px) {
 .hero h1 {
    font-size: 70px;
}
}

@media screen and (max-width: 938px) {
.hero h1 {
    font-size: 60px;
}
}

@media screen and (max-width: 799px) {
.hero h1 {
    font-size: 60px;
}
}

@media screen and (max-width: 799px) {
.hero h3 {
    font-size: 22px;
}
}

@media screen and (max-width: 608px) {
  .hero{
    height: 100vh;
  }
.hero h1 {
    font-size: 50px;
}
}

@media screen and (max-width: 608px) {
.hero h3 {
    font-size: 20px;
}
hgroup{
  padding-top: 15rem;
}
}

@media screen and (max-width: 507px) {
.hero h1 {
    font-size: 45px;
}
}

@media screen and (max-width: 507px) {
.hero h3 {
    font-size: 18px;
}
}

@media screen and (max-width: 400px) {
.hero h1 {
    font-size: 40px;
}
}

@media screen and (max-width: 400px) {
.hero h3 {
    font-size: 16px;
}
}
/* HOMEPAGE SECTION ENDS HERE */




/* Homepage Start */
.homepage {
  position: relative;
  height: 85vh;
  background: linear-gradient(
    to right,
    rgba(2, 82, 89, 0.9),
    rgba(255, 255, 255, 0)
  );
}

.homepage-content h1 {
  margin-bottom: 1rem;
  font-size: 4.5rem;
  font-weight: 800;
  color: var(--white);
  text-align: center;
  padding-top: 14rem;
  line-height:1.5;
  }
  @media (max-width: 992px) {
    .homepage{
      height: 45vh;
    }
    .homepage-content h1{
      font-size: 2.5rem;
      padding-top: 5rem;
    }
  }
.main__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -1;
  background: linear-gradient(
      to right,
      rgba(2, 82, 89, 0.9),
      rgba(255, 255, 255, 0)
    );
}





/* SECOND NAVBAR SECTION STARTS HERE */
nav#navbar {
  background: #dad9e0;
  top: 0;
  position: relative;
  width: 100%;
  transition: all 0.5s linear;
  z-index: 1;
  width: 100%;
  height: 5rem;
  padding-top: 1rem ;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
          box-shadow: 0 .1rem 1rem rgba(0, 0, 0, 0.1);
          font-family: 'Nunito', sans-serif;
  }

  @media (max-width: 1200px) {
    nav{
      display: none;
    }
  }
ul.menu-list {
  display: flex;
  list-style: none;
}
ul.menu-list li {
  display: flex;
  flex: 1;
  text-align: center;
  justify-content: center;
  align-items: center;
  padding: 5px 0;
  font-weight: 800;
}

ul.menu-list li > a {
  text-decoration: unset;
  display: flex;
  color: #000000;
  transition: 0.2s linar;
  text-transform: uppercase;
  font-weight: 800;
}
body.fixed-nav nav#navbar {
  position: fixed;
  box-shadow: 0 1px 2px rgb(0 0 0 / 20%);
}
body.fixed-nav li.logo {
  max-width: 300px;
}
/* SECOND NAVBAR SECTION ENDS HERE */




/* ABOUT SECTION STARTS HERE */
.about { 
  padding-block: var(--section-padding);
  padding-inline: 2rem; 
}

.about-title{
  font-size: 1.7rem;
}

.about-banner {
  position: relative;
  margin-bottom: 40px;
  font-family: 'Nunito', sans-serif;
}
.about-img {
  height: 32rem;
  width: 30rem;
  border-radius: 5%;
 }
.about-banner > img {
  max-width: max-content;
  width: 100%;
}

.about-banner .abs-img {
  position: absolute;
  bottom: 100px;
  left: 15px;
  width: 50%;
  border-radius: 4px;
}

.about .section-subtitle { margin-inline: 0; }

.about .section-title {
  --text-align: left;
  --margin-bottom: 15px;
  font-size: 1.8rem;
  font-family: 'Nunito', sans-serif;
}

.about-list { margin-bottom: 30px; }

.about-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  font-family: 'Nunito', sans-serif;
}

.about-item-icon {
  background: var(--misty-rose);
  height: 45px;
  min-width: 45px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: hsl(9, 100%, 62%);
}

.about-item-icon ion-icon {
  color: var(--orange-soda);
  font-size: 18px;
}

.about-item-text {
  color: #000;
  font-size: 1.1rem;
  font-weight: 550;
  font-family: 'Nunito', sans-serif;
}

.about .callout {
  background: hsla(7, 78%, 53%, 0.05);
  color: #161616;
  font-size: 1.1rem;
  font-weight: 550;
  line-height: 1.5;
  padding: 20px 25px;
  border-left: 4px solid var(--orange-soda);
  margin-bottom: 40px;
  font-family: 'Nunito', sans-serif;
}

.about .btn {
  max-width: max-content;
  --text-transform: uppercase;
}

@media (min-width: 600px) {
  .about .section-title { max-width: 30ch; }

  .about-text { max-width: 55ch }

  .about-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 700px) {
  .about {
    padding-inline: 4rem; 
  }
}

@media (min-width: 992px) {
  .about .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
  }

  .about-banner { margin-bottom: 0; }

  .about-banner > img { width: 100%; }
}

@media (max-width: 992px) {
  .about-img {
    height: 20rem;
  }
}
@media (max-width: 600px) {
  .about-content{
    margin: -1.6rem;
  }
}
/* ABOUT SECTION ENDS HERE */






/* SERVICES SECTION STARTS HERE */
.service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s;
    font-family: 'Nunito', sans-serif;
}

.icon-primary{
    color: hsl(9, 100%, 62%);
    padding-bottom: 1rem;
}
.service-item:hover {
    background: var(--primary);
}

.service-item * {
    transition: .5s;
}

.service-item:hover * {
    color: var(--light) !important;
}
/* SERVICES SECTION ENDS HERE */




/* COUNTRIES SECTION STARTS HERE */
:root {
    --primary-color: #00605f;
    --secondary-color: #017479;
    --text-dark: #0f172a;
    --text-light: #94a3b8;
    --white: #ffffff;
    --max-width: 1400px;
    }
    
    .destination__container{
    background: linear-gradient(
        to right,
        rgba(2, 82, 89, 0.9),
        rgba(255, 255, 255, 0)
      ), url(images/pexels2.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    font-family: 'Nunito', sans-serif;
    }
    
    
    .destination__container {
    position: relative;
    padding: 3rem 3rem 3rem 3rem;
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    align-items: center;
    }
    
    .destination__container .bg__img__1 {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-100%);
    opacity: 0.6;
    z-index: -1;
    }
    
    .destination__container .bg__img__2 {
    position: absolute;
    bottom: 2rem;
    right: 50%;
    transform: translateX(100%);
    opacity: 0.8;
    z-index: -1;
    }
    
    .destination__container .content h1 {
    margin-bottom: 1rem;
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--white);
    }
    
    .destination__container .content h1 span {
    -webkit-text-stroke: 2px var(--white);
    -webkit-text-fill-color: transparent;
    }
    
    .destination__container .content p {
    max-width: 350px;
    margin-bottom: 2rem;
    line-height: 1.5rem;
    color: var(--white);
    }
    
    .destination__container .content .btn {
    padding: 0.75rem 2rem;
    outline: none;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    background-color: var(--secondary-color);
    cursor: pointer;
    }
    
    .destination__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    }
    
    .destination__card {
    height: 100%;
    background-color: var(--white);
    box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.7);
    border-radius: 2%;
    }
    
    .destination__card img {
    width: 100%;
    border-radius: 1%;
    }
    
    .destination__container .card__content {
    padding: 1rem;
    }
    
    .destination__container .card__content h4 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    }
    
    .destination__container .card__content p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.5rem;
    color: #000;
    font-weight: 550;
    }
    
    .destination__container .card__content .btn {
    padding: 0.5rem 1rem;
    outline: none;
    border: none;
    font-weight: 500;
    color: var(--white);
    background-color: var(--primary-color);
    cursor: pointer;
    }
    
    @media (width < 1200px) {
      .destination__container .search {
      max-width: 235px;
    }
    
    .destination__container {
      grid-template-columns: 1fr;
    }
    }
    
    @media (width < 900px) {
      .destination__container .nav__links {
      display: none;
    }
    
    .destination__container .content h1 {
      font-size: 4rem;
    }
    
    .destination__grid {
      grid-template-columns: repeat(2, 1fr);
    }
    }
    
    @media (width < 600px) {
      .destination__container .search {
      display: none;
    }
  
        
    .destination__container {
      padding-left: 1.8rem;
    }
    
    .destination__container .content h1 {
      font-size: 3rem;
    }
  
    .destination__container .card__content p {
   font-size: 1.1rem;
      }
    
    .destination__grid {
      grid-template-columns: repeat(1, 1fr);
    }
    }
    
  /* COUNTRIES SECTION ENDS HERE */





  /* GALLERY SECTION STARTS HERE */
.menu{
  padding: 4%;
}
.menu .box-container{
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.menu .box-container .box{
  height: 20rem;
  flex: 1 1 20rem;
  border: .5rem solid var(--white);
  box-shadow: var(--box-shadow);
  border-radius: 1rem;
  position: relative;
  overflow: hidden;
}

.menu .box-container .box img{
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.menu .box-container .box .content{
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0);
  height: 100%;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  padding: 2rem;
  padding-top: 8rem;
  text-align: center;
}

.menu .box-container .box .content h3{
  font-size: 1.5rem;
  color: hsl(9, 100%, 62%);
}

.menu .box-container .box .content p{
  font-size: 1rem;
  padding: 1rem 0;
  color: var(--black);
}

.menu .box-container .box:hover .content{
  transform: translate(-50%, -50%) scale(1);
}


/* GALLERY SECTION ENDS HERE */




/* WHY CHOOSE US SECTION STARTS HERE */
.services {
    width: 100%;
   display: grid;
   place-items: center;
   padding-top: 1rem;
   padding-bottom: 3rem;
   font-family: 'Nunito', sans-serif;
   padding: 4%;
  }
  .services .row {
   display: flex;
   flex-wrap: wrap;
  }
  .services .column {
   width: 100%;
   padding: 0 1em 1em 1em;
   text-align: center;
  }
  .services .card {
   width: 100%;
   height: 100%;
   padding: 2em 1.5em;
   background: linear-gradient(#ffffff 50%, hsl(9, 100%, 62%) 50%);
   background-size: 100% 200%;
   background-position: 0 2.5%;
   border-radius: 5px;
   box-shadow: 0 0 35px rgba(0, 0, 0, 0.12);
   cursor: pointer;
   transition: 0.5s;
  }
  .services h3 {
   font-size: 1.1rem;
   font-weight: 550;
   color: hsl(9, 100%, 62%);;
   margin: 1em 0;
  }
  .services p {
   color: #575a7b;
   font-size: 1.15rem;
   line-height: 1.6;
   letter-spacing: 0.03em;
   font-weight: 550;
  }
  .services .icon-wrapper {
   background-color: hsl(9, 100%, 62%);;
   position: relative;
   margin: auto;
   font-size: 20px;
   height: 2.5em;
   width: 2.5em;
   color: #ffffff;
   border-radius: 50%;
   display: grid;
   place-items: center;
   transition: 0.5s;
  }
  .services .card:hover {
   background-position: 0 100%;
  }
  .services .card:hover .icon-wrapper {
   background-color: #ffffff;
   color: hsl(9, 100%, 62%);;
  }
  .services .card:hover h3 {
   color: #ffffff;
  }
  .services .card:hover p {
   color: #f0f0f0;
  }
  @media screen and (min-width: 768px) {
   .services section {
     padding: 0 2em;
   }
   .services .column {
     flex: 0 50%;
     max-width: 50%;
   }
  }
  @media screen and (min-width: 992px) {
   .services section {
     padding: 1em 3em;
   }
   .services .column {
     flex: 0 0 33.33%;
     max-width: 33.33%;
   }
  }
  
  /* WHY CHOOSE US SECTION ENDS HERE */
  



/* PACKAGES SECTION STARTS HERE */
.container-xxl{
  padding: 4%;
}
.package-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.package-item img {
    transition: .5s;
}

.package-item:hover img {
    transform: scale(1.1);
}
/* PACKAGES SECTION ENDS HERE */




/* FAQ SECTION STARTS HERE */

    /* FAQ SECTION ENDS HERE */




  /* TESTIMONIALS SECTION STARTS HERE */
        *{
          margin: 0;
          padding: 0;
          box-sizing: border-box;
              --card-clr: #161922;
          --body-clr: #191d28;
          --primary-clr: #F2B50F;
          --heading-clr: #dadada;
          --text-clr: #767a86;
        }
        .testimonials-section body{
          width: 100%;
          height: 100vh;
          display: flex;
          justify-content: center;
          align-items: center;
          background-color: var(--body-clr);
        }
        .testimonials-section{
          width: 100%;
          padding: 0px 8%;
          padding-bottom: 3rem;
        }
        .testimonials-section .section-header{
          max-width: 700px;
          text-align: center;
          margin: 30px auto 40px;
        }
        .section-header h1{
          position: relative;
          font-size: 36px;
          color: var(--primary-clr);
        }
        .testimonials-container{
          position: relative;
        }
        .testimonials-container .testimonial-card{
          padding: 20px;
        }
        .testimonial-card .test-card-body{
          background-color: var(--card-clr);
          box-shadow: 2px 2px 20px rgba(0,0,0,0.12);
          padding: 20px;
            border-radius: 1rem;
        }
        .test-card-body .quote{
          display: flex;
          align-items: center;
        }
        .test-card-body .quote i{
          font-size: 45px;
          color: var(--heading-clr);
          margin-right: 20px;
        }
        .test-card-body .quote h2{
          color: var(--heading-clr);
        }
        .test-card-body p{
          margin: 10px 0px 15px;
          font-size: 14px;
          line-height: 1.5;
          color: var(--text-clr);
        }
        .test-card-body .ratings{
          margin-top: 20px;
        }
        .test-card-body .ratings i{
          font-size: 17px;
          color: var(--primary-clr);
          cursor: pointer;
        }
        .testimonial-card .profile{
          display: flex;
          align-items: center;
          margin-top: 25px;
        }
        .profile .profile-image{
          width: 45px;
          height: 45px;
          border-radius: 50%;
          overflow: hidden;
          margin-right: 15px;
        }
        .profile .profile-image img{
          width: 100%;
          height: 100%;
          border-radius: 50%;
          object-fit: cover;
        }
        .profile .profile-desc{
          display: flex;
          flex-direction: column;
            font-family: 'Nunito', sans-serif;
            color: hsl(9, 100%, 62%);
        }
        .profile-desc span:nth-child(1){
          font-size: 20px;
          font-weight: bold;
          color: hsl(9, 100%, 62%);
        }
        .profile-desc span:nth-child(2){
          font-size: 15px;
          color: var(--text-clr);
        }
        .owl-nav{
          position: absolute;
          right: 20px;
          bottom: -10px;
        }
        .owl-nav button{
          border-radius: 50% !important;
        }
        .owl-nav .owl-prev i,
        .owl-nav .owl-next i{
          padding: 10px !important;
          border-radius: 50%;
          font-size: 18px !important;
          background-color: var(--card-clr) !important;
          cursor: pointer;
          transition: 0.4s;
        }
        .owl-nav .owl-prev i:hover,
        .owl-nav .owl-next i:hover{
          background-color: hsl(9, 100%, 62%) !important;
          color: #e9e9e9;
        }
        .owl-dots{
          margin-top: 15px;
        }
        .owl-dots .owl-dot span{
          background-color: #434753 !important;
          padding: 6px !important;
        }
        .owl-dot.active span{
          background-color: hsl(9, 100%, 62%) !important;
        }
        /* TESTIMONIALS SECTION ENDS HERE */





         /* WHATSAPP SECTION STARTS HERE */
         .whatsapp-button {    
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    z-index: 1000;
}

.whatsapp-button i {
    font-size: 40px;
}

.whatsapp-widget {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 330px;
    max-width: 90%;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    display: none;
    z-index: 1000;
}

.whatsapp-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    background-color: #25d366;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    color: white;
}

.whatsapp-header i {
    font-size: 35px;
    margin-right: 10px;
}

.whatsapp-header span {
    font-size: 24px;
    font-weight: bold;
}

.close-widget {
    cursor: pointer;
    font-size: 35px;
}

.whatsapp-content {
    padding: 20px;
    border-top: 1px solid #eee;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.whatsapp-content p {
    margin: 0;
    padding: 10px 0;
    font-size: 16px;
    width: 100%;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 10px;
}

.open-chat {
    background-color: #25d366;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
    align-self: flex-end;
    display: flex;
    align-items: center;
    justify-content: center;
}

.open-chat i {
    margin-left: 10px;
    transition: transform 0.3s;
}

.open-chat:hover i {
    transform: translateX(5px);
}
        
        /* WHATSAPP SECTION ENDS HERE */



    /* FOOTER SECTION STARTS HERE */
    .footer-logo{
        width: 100px;
        height: 100px;
        border-radius: 5%;
    }

    .footer-paragraph{
      line-height: 2;
    }

    .container-fluid{
        font-family: 'Nunito', sans-serif;
       }
       .d-flex a{
        line-height: 2.2;
       }
    /* FOOTER SECTION ENDS HERE */
