
/**======================================================================================================**/
@import url('https://fonts.googleapis.com/css2?family=Leckerli+One&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Pacifico&family=Poppins: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&display=swap');


:root {
    --color-primary: #e84e0e;
    --color-secondary: #4c5699;
    --color-tertiary: #451805;
    --color-orange: rgb(247, 121, 19);
    --color-white: #fff;
    --color-black: #000;
    --color-heading: #333333;
    --color-text: #555555;
    --box-shadow: 0px 0px 10px rgba(232, 78, 14, 0.3);
    --box-shadow-light-grey: 0px 0px 10px rgba(200, 200, 200, 0.5);
    --color-yellow: #ffc107;
}

body {
    font-family: "Poppins", sans-serif;
}


/*common css */
/* Default (Desktop) Styles */
h1 {
    font-size: 40px;
  }
  
  h2 {
    font-size: 32px;
  }
  
  h3 {
    font-size: 28px;
  }
  
  h4 {
    font-size: 24px;
  }
  
  h5 {
    font-size: 20px;
  }
  
  h6 {
    font-size: 16px;
  }
  
  p {
    font-size: 16px;
    line-height: 1.5;
    color: var(--color-text);
  }
  h1,h2,h3,h4,h5,h6 {
    color: var(--color-primary);
  }
  .py-40 {
    padding: 40px 0px;
  }
  /* Tablet (Medium Screens) */
  @media (max-width: 768px) {
    h1 {
      font-size: 36px;
    }
  
    h2 {
      font-size: 30px;
    }
  
    h3 {
      font-size: 26px;
    }
  
    h4 {
      font-size: 22px;
    }
  
    h5 {
      font-size: 18px;
    }
  
    h6 {
      font-size: 16px;
    }
  
    p {
      font-size: 15px;
    }
    .py-40 {
      padding: 40px 0px;
    }
  }
  
  /* Mobile (Small Screens) */
  @media (max-width: 480px) {
    h1 {
      font-size: 32px;
    }
  
    h2 {
      font-size: 28px;
    }
  
    h3 {
      font-size: 24px;
    }
  
    h4 {
      font-size: 20px;
    }
  
    h5 {
      font-size: 18px;
    }
  
    h6 {
      font-size: 16px;
    }
  
    p {
      font-size: 14px;
    }
    
  }

  .btn {
    padding: 10px 20px;
    border: 1px solid var(--color-primary);
    border-radius: 5px;
    background-color: var(--color-primary);
    color: var(--color-white);
    transition: all 0.3s ease;
  }
  .btn:hover {
    background-color: transparent;
    color: var(--color-primary);
  }

  .view-btn-container {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .view-btn-container .btn {
    margin-top: 35px;
  }

  img {
    width: 100%;
  }
  a {
    text-decoration: none;
    color: var(--color-black);
    transition: all 0.3s ease;
  }
  ul {
    display: flex;
    flex-direction: row;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 10px;
  }
  ul li a {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 7px;
  }

  .heading{
    text-align: center;
    padding-bottom: 20px;
  }
  .heading p {
    width: 80%;
    margin: auto;
  }

  
  @media (max-width:767px) {
    .heading p {
      width: 100%;
    }
  }



  /**==============Main CSS here===========================**/


  /**header css starts here **/
  header {
    padding: 10px 0px;
    background-color: #fff2ed;
  }

  header ul {
    list-style: none;
    display: flex;
    flex-direction: row;
    gap: 20px;
    padding: 0;
    margin: 0;
  }
  header img {
    width: 60%;
  }
  header span {
    font-size: 14px;
  }
  header ul li a:hover {
    color: var(--color-primary);
  }

  /**header css starts here **/


  /**hero section css starts here **/

  .hero-section {
    position: relative; 
    background-image: url("../assets/img/hero-bg.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    color: white; 
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); 
}
.hero-section .media_logo{
    position:absolute;
    right:15px;
    top:15px;
    display:inline-block;
    padding:4px 7px;
    border:1px solid #fff;
    border-radius:5px;
}
.hero-section .media_logo span{
    font-weight: 600;
}
.hero-section .media_logo img{
    display:inline-block;
    max-width:80px;
}
.hero-content {
    position: relative;
    z-index: 2; 
    display: flex;
    flex-direction: column;
    gap: 50px;
    align-items: center;
    text-align: center;
    justify-content: flex-start; 
    height: 100%; 
    padding: 80px 0px 50px;
}
.hero-content h1 {
  color: var(--color-white);
  font-weight: 545;
}
.hero-section .hero-content img {
    width: 200px;
}
  
  /**hero section css starts here **/

/**event features section css starts here**/
.features-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}
.features-list .feature-card {
  display: flex;
  width: 160px;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 20px;
  border-radius: 5px;
  box-shadow: var(--box-shadow);
}
.feature-card span {
  transition: all 0.3s ease;
}
.features-list .feature-card:hover span {
  color: var(--color-primary);
}
.features-list .feature-card:hover img {
  filter: brightness(0) saturate(100%) invert(20%) sepia(100%) saturate(500%) hue-rotate(180deg);
}
.feature-card img {
  height: 60px;
  transform: all 0.3s ease;
}
@media (max-width:767px) {
  .features-list {
    gap: 1.5rem;
  }
}


/**event features section css ends here**/

/**event attractions section css ends here**/

.event-attractions {
  background-color: #fff1de;
}
.event-attractions .heading h2 {
  color: var(--color-primary);
}
.event-attractions .heading p {
  color: var(--color-text);
}
.event-heading {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}
.event-heading h4 {
  display: inline-block;
  font-size: 16px;
  font-weight: 420;
  color: var(--color-white);
  background-color: var(--color-primary);
  padding: 8px 10px 4px 10px;
  border-radius: 5px;
}
.explore-card {
  border-radius: 5px;
  box-shadow: var(--box-shadow-light-grey);
  overflow: hidden;
}
.explore-card:hover img {
  transform: scale(1.05);
}
.explore-card .explore-img {
  height: 150px;
  overflow: hidden;
}
.explore-card .explore-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
}
.explore-card .explore-title {
  background-color: var(--color-primary);
}
.explore-card .explore-title p {
  text-align: center;
  padding: 10px 0px;
  margin: 0;
  color: var(--color-white);
}



/**event attractions section css ends here**/
/**mayor message section css starts here**/

.mayor-card {
  border-radius: 5px;
  box-shadow: var(--box-shadow);
  padding: 20px;
  width: 70%;
  margin: auto;
}
.mayor-card img {
  border-radius: 3px;
}
.mayor-card span {
  font-size: 14px;
}
@media (max-width:767px) {
  .mayor-card {
    width: 100%;
    margin: auto;
  }
  .mayor-card p {
    padding-top: 20px;
  }
}

/**mayor message section css ends here**/
/**blog section section css ends here**/


.blogs {
  padding-bottom: 40px;
}
.blog-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin: 0 auto;
  max-width: 1200px;
}

.blog-card {
  background: #fff;
  border-radius: 5px;
  box-shadow: var(--box-shadow);
  overflow: hidden;
  transition: transform 0.3s ease;
}

/* .blog-card:hover {
  transform: translateY(-10px);
} */
.blog-img {
  overflow: hidden;
}
.blog-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: all 0.5s ease;
}
.blog-card:hover img {
  transform: scale(1.05);
}
.blog-content {
  padding: 20px;
}
.blog-card:hover {
  cursor: pointer;
}
.blog-content .date {
  display: inline-block;
  font-size: 0.9em;
  margin-bottom: 10px;

  font-weight: 420;
  color: var(--color-white);
  background-color: rgb(255, 108, 11);
  padding: 0px 10px;
  border-radius: 5px;
}

.blog-content .title {
  font-size: 1.2em;
  font-weight: bold;
  color: var(--color-heading);
  margin-bottom: 10px;
  transition: all 0.3s ease;
}
.blog-card:hover .title {
  color: var(--color-secondary);
}

.blog-content .description {
  font-size: 1em;
  color: var(--color-text);
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-content .read-more {
  font-size: 0.9em;
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.3s ease;
  text-decoration: underline;
}

/* .blog-content .read-more:hover {
  color: var(--color-primary);
} */

@media (max-width: 768px) {
  .blog-card img {
      aspect-ratio: 16 / 9;
  }
}

@media (max-width: 480px) {
  .blog-content .title {
      font-size: 1em;
  }
}

/**blog section css ends here**/
/**video banner section css starts here**/


.video-section {
  position: relative;
  height: 80vh;
  overflow: hidden;
}

.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.black-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
}

.overlay-content {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 1;
}
.overlay-content h2, .overlay-content p {
  color: var(--color-white);
}
.overlay-content h2 {
  color: var(--color-white);
  font-size: 36px;
}
.play-button {
  display: inline-block;
  margin-top: 15px;
  background-color: #ff7f50;
  color: white;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.play-button:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}

@media (max-width:767px){
  .video-section {
    height: 40vh;
  }
}

/**video banner section css ends here**/
/**historical places section css starts here**/


.country-card {
  position: relative;
  overflow: hidden;
  height: 350px; 
  transition: height 0.5s;
  border-radius: 5px;
  box-shadow: var(--box-shadow-light-grey);
}
.country-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.country-card-footer {
  /* font-size: 18px; */
  font-weight: bold;
  height: 130px;
  position: absolute;
  bottom: 60px;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  text-align: center;
  padding: 10px;
  transition: all 0.5s ease-in-out;
  transform: translateY(100%);
}
.country-card:hover .country-card-footer {
  transform: translateY(0);
  bottom: 0px;
}
.country-text {
  padding: 7px 0px;
  color: white;
  transition: all 0.5s ease-in-out;
}
.country-card:hover .country-card-footer p {
  padding: 10px 0px;
}
/* .plane-icon {
  font-size: 60px;
  margin-right: 20px;
} */
@media (max-width: 767px) {
  /* .plane-icon {
    font-size: 50px;
    margin-right: 5px;
  } */
  .heading-column {
    flex-direction: column;
    align-items: center;
  }
  .heading-center h3 {
    text-align: center;
  }
  .country-card img {
    width: 100%;
  }
}

.destination-section {
  background-color: var(--color-bg);
}

.gradient-text {
  background: linear-gradient(90deg, #1d5b96 0%, #4a4982 21%, #553c70 40.5%, #733350 55.5%, #a6232f 86%, #b51f29 95.5%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}
.destination-card {
  display: flex;
  justify-content: center;
  height: 100%;
  align-items: center;
  background-size: cover;
  color: white;
  border-radius: 10px;
  position: relative;
  overflow: hidden; 
}

.destination-footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  position: absolute;
  bottom: 0;
  border-radius: 0 0 10px 10px;
  font-size: 18px;
  font-weight: bold;
  background: rgba(0, 0, 0, 0.5);
  mix-blend-mode: plus-darker;
  height: auto; 
  overflow: hidden; 
  transition: padding 0.5s ease-in-out; 
}

.destination-card:hover .destination-footer {
  padding-bottom: 40px; 
}

.destination-card:hover .destination-hover-btn {
  display: block;
  opacity: 1; 
  transition: opacity 0.5s ease-in-out; 
}
.destination-footer p {
  margin: 0;
  padding:0;
  opacity: 1;
  text-align: center;
  color: white;
}
.destination-hover-btn {
  display: none;
  opacity: 0;
}

/**historical places section css ends here**/
/**how it works section css starts here**/

.how-it-works {
  position: relative;
  padding: 60px 0;
  color: #fff;
}

.how-it-works::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../assets/img/how-it-works.png') center/cover no-repeat;
  z-index: -2;
}

.how-it-works::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: rgba(0, 0, 0, 0.8); */
  background: rgba(30, 10, 2, 0.95);
  z-index: -1;
}

.how-it-works .heading {
  text-align: center;
  margin-bottom: 40px;
}

.how-it-works .heading h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #fff;
}

.how-it-works .heading p {
  font-size: 1rem;
  color: #fff;
}

.how-it-works .process-card {
  /* background: rgba(255, 255, 255, 0.1); */
  border: 1px solid var(--color-primary);
  padding: 20px;
  border-radius: 5px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #fff;
}

.how-it-works .process-card i {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--color-yellow);
}

.how-it-works .process-card h4 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #fff;
}

.how-it-works .process-card p {
  font-size: 1rem;
  line-height: 1.5;
  color: #fff;
}

.how-it-works .process-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}



/**how it works section css ends here**/
/**short intro section css ends here**/

.short-intro {
  border-top: 1px solid #BABABA;
}
.short-intro img {
  border-radius: 5px;
}
.short-intro h2 {
  line-height: 1.5;
}


/**short intro works section css ends here**/
/**FAQs section css starts here**/

/* CSS variables */
:root {
  --primary-text: #4f8f70;
  --secondary-text: #e9fff3;
  --white-text-white: #ffffff;
  --black-text-black: #000000;
}
/* custom font */
/* @font-face {
  font-family: "Avenir";
  src: url("../assets/font/AvenirLight.woff2") format("woff2"),
    url("../assets/font/AvenirLight.woff") format("woff");
  font-weight: 400;
  font-style: normal;
} */

/* * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--white-text-white);
  color: var(--black-text-black);
  font-family: sans-serif;
  /* custom scroll bar   */
  /* overflow-y: scroll;
} */
/* body::-webkit-scrollbar {
  width: 8px;
}

body::-webkit-scrollbar-track {
  background-color: var(--secondary-text);
  border-radius: 100px;
}

body::-webkit-scrollbar-thumb {
  background-color: var(--primary-text);
  border-radius: 100px;
}
a {
  text-decoration: none;
}
.accordion-body ul li a {
  color: black;
  font-weight: 700;
}  */

.accordion-card {
  box-shadow: var(--box-shadow-light-grey);
  width: 70%;
  border-radius: 5px;
  overflow: hidden;
  margin: auto;
}

/* .accordion-button:not(.collapsed) {
  background-color: #c5e5d8;
  background-color: var(--color-primary) !important;
  color: var(--color-white) !important;
} */

.accordion-button:not(.collapsed)::after {
  background-image: none;
  transform: none;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-button:before {
  content: "";
  position: absolute;
  right: 0.75rem;
    top: 50%;
    height: 2px;
    width: 16px;
  background-color: var(--primary-text);
}
.accordion-button.collapsed:after {
  content: "";
  position: absolute;
  right: 1.1875rem;
    top: calc(50% - 8px);
    height: 18px;
    width: 2px;
  border-style: none;
  background-color: var(--primary-text);
}

.faq-section .accordion-button h5 {
    /* color: #7dbc9e; */
  /* color: var(--color-text); */
  margin-right: 10px;
}
.accordion-button h5 {
  margin-bottom: 0;
  font-size: 18px;
  color: #333;
  transition: all 0.3s ease;
}
.accordion-button:hover h5 {
  color: var(--color-primary);
}

/* .accordion-body {
  background-color: var(--secondary-text);
} */
/* button:focus:not(:focus-visible) {
    outline: 0;
} */

/* list */
/* ul {
  list-style-type: none;
  list-style-type: disc;
  margin-left: 20px;
}
ul li {
  margin-bottom: 5px;
} */
.accordion-body {
  color: var(--color-text);
}
.accordion-body ol {
  counter-reset: step-counter;
  list-style-type: none;
  padding-left: 0;
}

.accordion-body ol > li {
  counter-increment: step-counter; /* Increment custom counter */
  margin-bottom: 10px;
}

.accordion-body ol > li::before {
  content: "Steps " counter(step-counter) ": "; /* Custom prefix */
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  /*   .faq-section .accordion {
    width: 50%;
    margin: 0 auto;
  } */
  

  .faq-section .accordion-button h5 {
    margin-right: 0px;
  }
}
@media (max-width:767px){
  .accordion-card {
    width: 100%;
  }
}


/**FAQs section css ends here**/
/**Footer section css starts here**/


footer {
  background-color: #f1f1f1;
  padding-top: 40px;
  padding-bottom: 15px;
}
footer .logo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-items: center;
}
footer .logo img {
  width: 100px;
}
footer .logo h5 {
  padding-bottom: 5px;
  margin-bottom: 0;
}
footer .contact ul, footer .quick-links ul {
  flex-direction: column;
}
footer .image-item {
  width: 100%;
  height: 100px;
  overflow: hidden;
}
footer .image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}
footer h5 {
  padding: 10px 0px;
}
footer .contact ul li a i {
  font-size: 20px;
}
footer .quick-links ul li a i {
  font-size: 16px;
}
footer .social ul li a i {
  font-size: 24px;
}
footer .quick-links, footer .contact, footer .social {
  padding-top: 10px;
}
footer hr {
  margin: 15px 0px;
}
footer .copyright p{
    text-align:center;
    margin:0;
}

@media (max-width: 767px) {
  footer .logo {
    justify-content: start;
    text-align: left;
    align-items: start;
  }
  footer .quick-links, footer .contact, footer .social {
    padding-top: 0px;
  }

}


/**Footer section css ends here**/

