@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;600;700&display=swap');

:root {
  --primary-black: black;
  --primary-white: white;
  --primary-orange: #E85B10;

  --font-color-dark: black;
  --font-color-light: white;
  --font-third-color: rgb(224, 95, 20);

  /*font sizes*/
  --font-family: 'Poppins', sans-serif;
  --font-size-base: 1rem;
  --font-size-sm: 0.875rem;
  --font-size-md: 1.125rem;
  --font-size-lg: 1.5rem;
  --font-size-xl: 2rem;
  --font-size-xxl: 4rem;

  /*gaps*/
  --gap: 2rem;
  --margin-small: 0.5rem;
  --margin-medium: 1rem;
  --margin-large: 2rem;
  --padding-small: 0.5rem;
  --padding-medium: 1rem;
  --padding-large: 2rem;

}

body {
  background-color: var(--primary-black);
}



* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: var(--font-family);
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  object-fit: cover;
  width: 100%;
  max-width: 100%;
  height: 100%;
  display: inline-block;
}

ul {
  list-style: none;
}


/*----------------------Navbar section-----------------------*/

.header {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  /* above the background image */
  background: transparent;
  padding: var(--padding-small) var(--padding-medium);
}

.navbar {
  display: flex;
  justify-content: space-between;
  position: relative;
  align-items: center;
}


.menu-container {
  position: absolute;
  align-items: center;
  border-radius: 10px;
  top: 4.5rem;
  right: 0rem;
  width: 100%;
  padding: var(--padding-large);
  opacity: 0;
  color: rgb(255, 255, 255);
  background-color: black;
  transform: scale(0);
  transition: opacity.25s ease-in;

}

.list {
  display: flex;
  flex-direction: column;
  padding: 1rem 0;


}

.list-item {
  padding: 0 1rem;
  padding: .5rem 0;
}

/* Active nav-link */
.list-link.current {
  color: var(--primary-orange);
  /* if you want a little underline instead of just color: */
  /* border-bottom: 2px solid var(--primary-orange); */
}

/* Optional: on hover of non-active links, keep your default hover style */
.list-link:not(.current):hover {
  color: var(--primary-orange);
}


.logout-btn-container {
  display: flex;
  align-items: center;
  padding: 0 1rem;
}


.logo {
  padding: .5rem;
  position: relative;
}

.logo img {
  width: 60px;
  display: block;
  position: relative;


}

.navbar-container {

  width: 100%;
  border-radius: 20px;
  background-color: rgba(53, 53, 53, 0.5);
  color: white;
  position: relative;
  padding: 0 1rem;
  position: relative;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: top 2.5s ease 0.5s;
}

.container {

  width: 100%;
  border-radius: 20px;
  background-color: rgba(53, 53, 53, 0.5);
  color: white;
  position: relative;
  padding: 0 var(--padding-small);
  position: relative;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: top 2.5s ease 0.5s;
}

.logout-btn-container button {
  position: relative;
  display: inline;

  border-radius: 10px;
  font-size: var(--font-size-sm);
  background-color: var(--primary-orange);
  color: var(--font-color-light);
  font-weight: bold;
  padding: var(--padding-medium);
  border-radius: 10px;
  border: none;
  overflow: hidden;
  cursor: pointer;
  transition: color 0.3s ease;
}

.get-started-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: white;
  transition: left 0.5s ease;
  z-index: 0;
  /* sit behind the text */
  border-radius: 10px;
}

/* on hover slide into place */
.get-started-btn:hover::before {
  left: 0;
}

/* make sure your link/text sits on top */
.get-started-btn>a {
  position: relative;
  z-index: 1;
  /* sit above the ::before */
  color: inherit;
  /* so it picks up your hover-color change */
  text-decoration: none;
  display: inline-block;
  /* to avoid weird inline stacking issues */
}

/* switch text to black when the overlay is in front */
.get-started-btn:hover>a {
  color: black;
}

.open-menu-icon {
  color: #ffffff;
  background-color: transparent;
  font-size: 1.2rem;
}



/*----------------------Hero section-----------------------*/
.hero {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background-image: linear-gradient(#a5a5a565, rgba(0, 0, 0, 0.5)), url(../images/eda70350-9624-4e6c-88d6-c4d58aa40de5.png);
  background-size: cover;
  background-position: center;
  filter: blur(10px);
  transform: scale(1.8);
  transition: transform 1.5s ease-in-out, filter 2.5s ease;
  position: relative;
  overflow: hidden;

}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;

  color: rgb(0, 0, 0);
  text-align: center;
  opacity: 1;
  transform: translateY(50px);
  transition: opacity 2.5s ease, transform 2.5s ease;


}

.main-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

}

.main-heading h1 {
  color: var(--primary-white);
  padding: 1rem 1rem;

}



.main-heading p {

  color: rgb(221, 221, 221);
  padding: 0 1rem;
  padding-bottom: 1rem;
  font-size: 13px;
  font-style: italic;

}

/* Final positioning */
.hero.animate {

  filter: blur(0);
  transform-origin: center center;
  transform: scale(1);
}

.hero-content.animate {
  opacity: 1;
  transform: translateY(-20px);

}




/* Header JavaScript Styles */
.header.activated {
  box-shadow: 0 1px.5rem red;

}

.menu-container.activated {

  opacity: 1;
  transform: scale(1);
}

.open-menu-icon {
  display: block;
}

.close-menu-icon {
  display: none;
  color: #ffffff;
  font-size: 1.2rem;
}

/* Remove any white background from the mobile toggle */
.menu-toggle-icon {
  background: none !important;
  border: none;
  padding: 0;
  /* if you want it to shrink-wrap the icon exactly */
}

/* Ensure the <i> itself has no background */
.menu-toggle-icon i {
  background: none !important;
}

/* If you still see a white rectangle when it’s focused or active: */
.menu-toggle-icon:focus,
.menu-toggle-icon:active {
  outline: none;
  background: none !important;
}


.menu-toggle-icon.activated .open-menu-icon {
  display: none;

}

.menu-toggle-icon.activated .close-menu-icon {
  display: block;

}





/*--------------Opeaning section--------------*/
.opening-container {
  padding: 5rem 0rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.opening-heading h1 {
  color: white;
  font-size: 2rem;
  text-align: center;
  padding: 2rem 0;

}

.highlight {
  background-color: var(--primary-orange);
}

.opening-count {
  display: flex;
}

.count-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.col-1 {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}


.count-container h1 {
  color: var(--primary-orange);
  font-size: 2.5rem;
}

.count-container h2 {
  color: var(--primary-white);
  font-size: 1rem;
  text-align: center;
  font-style: italic;
  font-weight: 400;
}




/*--------------seervices section--------------*/

.icon-grid {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.icon {
  width: 80px;
}

.container {

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: transparent;

}


.img-container {
  background-color: var(--primary-white);
  border-radius: 20px;
  width: 20%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  margin: 20px;
}

/*--------------Locations section--------------*/

.locations-heading {
  padding: 2rem;
}

.locations-heading h1 {
  color: var(--primary-white);
  font-size: 2rem;
  padding: 1rem 0;
}

.locations-heading p {
  color: var(--primary-white);
  font-style: italic;
  font-weight: 400;

}

.location-images {
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;

}

.img-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-template-rows: auto;
}


.img-row {
  position: relative;
  overflow: hidden;
}

/* the dark overlay */
/* empty pseudo—will carry the inset shadow */
.img-row::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  /* so clicks pass through */
  transition: box-shadow 0.3s ease;
  z-index: 1;
  /* above the img, below the label */
}

/* on hover, draw a dark frame (tweak blur/spread to taste) */
.img-row:hover::before {
  box-shadow: inset 0 0 300px rgba(0, 0, 0, 0.7);
}

/* make sure image and text sit beneath/above correctly */
.img-row img {
  display: block;
  width: 100%;

  transition: transform 0.3s ease;
  z-index: 0;
}

.img-row:hover img {
  transform: scale(1.1);
}

.img-row::after {
  /* your existing label rule */
  content: attr(data-text);
  position: absolute;
  bottom: 0;
  left: 50%;
  font-size: 3rem;
  font-weight: 800;
  transform: translate(-50%, 100%);

  color: white;
  padding: 0.5em 0rem;
  border-radius: 4px 4px 0 0;
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  z-index: 2;
}

.img-row:hover::after {
  transform: translate(-50%, 0);
  opacity: 1;
}

.btn-orange {
  margin: 1rem;
  background-color: var(--primary-orange);
  color: white;
  padding: 0.5em 1em;
  border: none;
  border-radius: 20px;
  font-size: .7rem;
  width: 200px;
  align-content: center;
  /* center the arrow vertically */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
}

.location-images a :hover {

  background-color: var(--primary-white);
  color: var(--primary-orange);
  transition: .3s ease-in-out;

}

.btn-orange .btn-arrow {
  margin-left: 0.5em;
  font-size: 1.2em;
  /* optional: you could use transform for a subtle shift */
}


/*--------------------------------------------Journey section-------------------------------------------*/

/* .Journey-heading{
  padding: 2rem;
}
.Journey-heading h1{
  color: var(--primary-white);
  font-size: 2rem;
  padding: 1rem 0;
}

.Journey-heading p{
  color: var(--primary-white);
  font-style: italic;
  font-weight: 400;

}
.Journey-slider {
  position: relative;
  margin: 2rem 0;
}
.section{
  position: relative;
  width: 100%;
  display: block;
}
.full-height{
  min-height: 100vh;
}
.over-hide{
  overflow: hidden;
}
.padding-tb{
  padding: 100px 0;
}
[type="radio"]:checked,
[type="radio"]:not(:checked){
  position: absolute;
  left: -9999px;
}
.checkbox:checked + label,
.checkbox:not(:checked) + label{
  position: relative;
  cursor: pointer;
  margin: 0 auto;
  text-align: center;
  margin-right: 6px;
  margin-left: 6px;
  display: inline-block;
  width: 50px;
  height: 50px;
  border: 3px solid #bdc3c7;
  background-size: cover;
  background-position: center;
  box-sizing: border-box;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
 background-image: url(../images/eda70350-9624-4e6c-88d6-c4d58aa40de5.png);
  animation: border-transform 6s linear infinite alternate forwards;
    -webkit-animation-play-state: paused;
    -moz-animation-play-state: paused;
    animation-play-state: paused;
}
.checkbox.scnd + label{
  background-image: url(../images/eda70350-9624-4e6c-88d6-c4d58aa40de5.png);
}
.checkbox.thrd + label{
 background-image: url(../images/eda70350-9624-4e6c-88d6-c4d58aa40de5.png);
}
.checkbox.foth + label{
 background-image: url(../images/eda70350-9624-4e6c-88d6-c4d58aa40de5.png);
}

.checkbox:checked + label{
  box-shadow: 0 8px 25px 0 rgba(16,39,112,.3);
  transform: scale(1.3);
    -webkit-animation-play-state: running;
    -moz-animation-play-state: running;
    animation-play-state: running;
}
@keyframes border-transform{
  0%,100% { border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%; } 
  14% { border-radius: 40% 60% 54% 46% / 49% 60% 40% 51%; } 
  28% { border-radius: 54% 46% 38% 62% / 49% 70% 30% 51%; } 
  42% { border-radius: 61% 39% 55% 45% / 61% 38% 62% 39%; } 
  56% { border-radius: 61% 39% 67% 33% / 70% 50% 50% 30%; } 
  70% { border-radius: 50% 50% 34% 66% / 56% 68% 32% 44%; } 
  84% { border-radius: 46% 54% 50% 50% / 35% 61% 39% 65%; } 
}

.slider-height-padding {
  padding-top: 440px;
}

ul {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  z-index: 100;
  padding: 0;
  margin: 0;
  list-style: none;
}
ul li {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: block;
  z-index: 100;
  padding: 0;
  margin: 0;
  list-style: none;
  height: 400px;
  border: 5px solid #bdc3c7;
  background-size: cover;
  background-position: center;
 background-image: url(../images/eda70350-9624-4e6c-88d6-c4d58aa40de5.png);
  border-radius: 50%;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: 16px;
  letter-spacing: 2px;
  line-height: 2.7;
  color: #343434;
  writing-mode: vertical-rl;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 8px 25px 0 rgba(16,39,112,.1);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
ul li span {
  mix-blend-mode: difference;
}
ul li:nth-child(2) {
  background-image: url(../images/eda70350-9624-4e6c-88d6-c4d58aa40de5.png);
}
ul li:nth-child(3) {
 background-image: url(../images/eda70350-9624-4e6c-88d6-c4d58aa40de5.png);
}
ul li:nth-child(4) {
 background-image: url(../images/eda70350-9624-4e6c-88d6-c4d58aa40de5.png);
}


.checkbox.frst:checked ~ ul li:nth-child(1) {
  opacity: 1;
  pointer-events: auto;
  border-radius: 16px;
}
.checkbox.scnd:checked ~ ul li:nth-child(2) {
  opacity: 1;
  pointer-events: auto;
  border-radius: 16px;
}
.checkbox.thrd:checked ~ ul li:nth-child(3) {
  opacity: 1;
  pointer-events: auto;
  border-radius: 16px;
}
.checkbox.foth:checked ~ ul li:nth-child(4) {
  opacity: 1;
  pointer-events: auto;
  border-radius: 16px;
}

.logo {
	position: absolute;
	top: 30px;
	right: 30px;
	display: block;
	z-index: 100;
	transition: all 250ms linear;
}
.logo img {
	height: 26px;
	width: auto;
	display: block;
} */


/*--------------guide section--------------*/

.guide-heading {
  padding: 2rem;
}

.guide-heading h1 {
  color: var(--primary-white);
  font-size: 2rem;
  padding: 1rem 0;
}

.guide-heading p {
  color: var(--primary-white);
  font-style: italic;
  font-weight: 400;

}

.guide-profile {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.profile-img {
  width: 200px;
  height: 200px;
  border: 2px solid var(--primary-orange);
  border-radius: 50%;

}

.profile-img img {

  border-radius: 50%;
  background-position: center;
  background-size: cover;
}

.profile-details {
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.profile-details h1 {
  color: white;
  font-size: 1.5rem;
  font-weight: 500;
}

.profile-details h2 {
  color: white;
  font-size: 1rem;
  font-style: italic;
  font-weight: 700;
}

.guide-photos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.3rem;
}

/* every 1st in a group of three spans the full width */
.guide-photos .img-row:nth-child(3n+1) {
  grid-column: 1 / -1;
}

.img-row {
  /* if you still want to use flex inside each row: */
  display: flex;
  gap: 0.3rem;
}

.img-row img {
  flex: 1 1 0;
  width: auto;
  object-fit: cover;
  background-position: center;
  display: block;
}


/*-------------------------------------feedback section--------------------------------------------*/



/* Feedback form styles */
#submit-feedback {
  background: #f9f9f9;
  border-radius: 8px;
  margin: 2rem auto;
  max-width: 600px;
  padding: 2rem;
}

.feedback-form-heading h1 {
  margin-bottom: 1rem;
  text-align: center;
}

.feedback-form .form-group {
  margin-bottom: 1.5rem;
}

.feedback-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.feedback-form input[type="text"],
.feedback-form textarea {
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
  padding: 0.75rem;
  width: 100%;
  box-sizing: border-box;
}

.feedback-form input[type="text"]:focus,
.feedback-form textarea:focus {
  border-color: #ff7f3f;
  outline: none;
}

.feedback-form .btn-orange {
  background-color: #ff7f3f;
  border: none;
  border-radius: 4px;
  color: #fff;
  cursor: pointer;
  display: block;
  font-size: 1rem;
  margin: 0 auto;
  padding: 0.75rem 2rem;
  transition: background 0.2s ease-in-out;
}

.feedback-form .btn-orange:hover {
  background-color: #e76e2e;
}


/* ★ Star‑rating widget */
.star-rating {
  display: flex;
  flex-direction: row-reverse; /* start from 5 on the left */
  justify-content: flex-start;
}

.star-rating input[type="radio"] {
  display: none;
}

.star-rating label {
  font-size: 2rem;
  color: #ccc;
  cursor: pointer;
  padding: 0 0.1rem;
  transition: color 0.2s;
}

/* highlight on hover and checked */
.star-rating label:hover,
.star-rating label:hover ~ label,
.star-rating input:checked ~ label {
  color: #ff7f3f;
}



.feedback-heading h1{
  font-size: 2rem;
  padding:4rem 2rem;
  color: #fff;
}

.feedback-container{
   background-color: #ffffff;
  padding: 2rem;
  margin: 0 2rem;
  border-radius: 20px;
  display: grid;
  grid-template-columns: repeat(1,1fr);
  grid-template-rows: auto;
  gap: 2rem;

}

.feedback-content{
  /* optional: give it a background and rounded corners */
  background-color: #fff;
  border-radius: 20px;
  padding: 1rem;

  /* the box-shadow itself */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.ratings{
  text-align: end;
  padding: 1rem;
}

.profile-img-container{
  background-color: #E85B10;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  z-index: 2;
  margin: 1rem;
}

.info{
  display: flex;
  align-items: center;
}


.info h1{
color: #000000;
font-weight: 400;
}

.profile-img-container img{
  padding: 5px;
}





/*-------------------------------------last cta section--------------------------------------------*/

.last-cta {
  position: relative;
  height: 80vh;
  background-color: var(--bg-color-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.last-cta-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 100;

}

.last-cta-componant {

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

}

.text-block {
  width: 100%;
  padding: var(--padding-large);
  display: flex;
  align-items: center;
  justify-content: center;
}

.text-block h1 {
  line-height: 1.1;
  color: var(--font-color-light);
  font-size: 3rem;
  text-transform: capitalize;


}

.button-wrapper {
  padding: 8px 10px;
  border-radius: 15px;
  background-color: var(--primary-orange);
  display: flex;
  align-items: center;
  justify-content: center;
}

.button-icon {

  background-color: #fff;
  border-radius: 10px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.button-text {
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.button-icon img {

  object-fit: cover;
  width: 100%;
  max-width: 100%;
  height: 100%;
  display: inline-block;

}

.button-text p {
  color: var(--font-color-light);
  font-weight: 300;
  font-size: var(--font-size-lg);
}

/* Initial button styling */
.get-started-button {
  display: inline-block;
  background-color: rgb(77, 77, 77);
  margin-top: 30px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.button-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}

.button-icon {
  background-color: white;

  padding: 5px;
  transition: width 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  /* Initial width */
  z-index: 999;
}

.white-bg {
  background-color: rgb(255, 255, 255);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 7px;
  border-radius: 15px;
  width: 20%;
  height: 70%;

}

.button-text p {
  color: white;
  font-weight: 600;
  font-size: var(--font-size-lg);
  margin-left: 15px;
  transition: color 0.3s ease;
  z-index: 999;
}

.get-started-button:hover .white-bg {
  width: 92%;
  transition: width 0.3s ease-in-out;
}

.get-started-button:hover .button-text p {
  color: black;

}

.get-started-button:hover {
  color: black;
}


.cta-img-wrap {
  filter: blur(4.35px);
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.212);
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
}


.cta-img-wrap img {

  width: 200px;
  height: 200px;
  position: absolute;
}


.cta-image-first {

  width: 200px;
  height: 200px;
  left: 10%;
  position: relative;
  animation: floatUp 70s linear infinite;
}

.cta-image-second {
  display: none;
  width: 100px;
  height: 100px;
  position: relative;
  left: 25%;
  animation: floatDown 70s linear infinite;
}

.cta-image-third {
  display: none;
  width: 100px;
  height: 100px;
  position: relative;
  right: 20%;
  animation: floatUp 70s linear infinite;
}

.cta-image-fourth {
  width: 200px;
  height: 200px;
  position: relative;
  right: 10%;
  animation: floatDown 70s linear infinite;
}

/* Keyframe animations */
@keyframes floatUp {
  0% {
    transform: translateY(300%);
  }

  50% {
    transform: translateY(-300%);
  }

  100% {
    transform: translateY(100%);
  }
}

@keyframes floatDown {
  0% {
    transform: translateY(-300%);
  }

  50% {
    transform: translateY(300%);
  }

  100% {
    transform: translateY(-100%);
  }
}




/*-------------------------------------Footer-----------------------------------------*/
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;

  padding: 2rem;
}

.footer-logo {

  width: 100px;
}

.footer-desc {
  text-align: center;
  padding: 2rem 0rem;
}

.footer-top {
  color: #fff;
}


.footer-col {
  width: 100%;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;

}

.footer-col h4 {
  font-size: 2rem;

}

.footer-list {
  padding: 1rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;

}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;

  padding: 2rem;
}

.footer-copy {
  text-align: center;
  padding: 2rem 1rem;
}

.footer-social a {
  padding: .5rem;
  font-size: 1.5rem;
}

.floating-message-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 80px;
  height: 80px;
  background-color: var(--primary-white);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  color: #fff;
  font-size: 1.5rem;
  text-decoration: none;
  z-index: 1000;
  transition: background-color 0.3s, transform 0.2s;
}

.floating-message-btn:hover {
  background-color: #E85B10;
  transform: translateY(-2px);
}

.floating-message-btn:hover i {
  color: #fff;
}

.floating-message-btn i {
  pointer-events: none;
  font-size: 2.5rem;
  color: #000000;
}

.floating-message-btn i:hover {

  color: #fff;
}





@media (min-width: 767px) {
  .slider-height-padding {
    padding-top: 340px;
  }

  .main-heading h1 {
    color: var(--primary-white);
    padding: 1rem 1rem;
    font-size: 3rem;

  }



  .main-heading p {

    color: rgb(221, 221, 221);
    padding: 0 1rem;
    padding-bottom: 1rem;
    font-size: 20px;
    font-style: italic;

  }

  .opening-container {
    flex-direction: row;
    padding: 5rem 2rem;
  }

  .opening-heading h1 {
    text-align: left;
    padding: 0 2rem;
    font-size: 3rem;
  }

  .icon-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    padding: 1rem 2rem 5rem 2rem;
  }

  .locations-service {
    padding: 2rem;
  }




  .img-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }


  /* every 1st in a group of three spans the full width */
  .img-grid .img-row:nth-child(3n+1) {
    grid-column: 1 / -1;
  }

  .img-row {
    /* if you still want to use flex inside each row: */
    display: flex;
    gap: 0.3rem;
    padding: 5px;
  }

  .img-row img {
    flex: 1 1 0;
    width: auto;
    object-fit: cover;
    display: block;
  }

  .btn-orange {

    font-size: 1rem;
    margin: 2rem;
    width: 400px;

  }

  .guide-service {
    padding: 2rem;
  }



  .guide-photos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* two equal columns */
    grid-auto-rows: 400px;
    /* or minmax(150px, auto) for responsiveness */
    gap: 1px;
    grid-auto-flow: row dense;
    padding: 2rem;
    /* ← add this! */
  }

  /* big-left */
  .guide-photos .img-row:nth-child(6n+1) {
    grid-column: 1;
    grid-row: span 2;
  }

  /* small-right top & bottom */
  .guide-photos .img-row:nth-child(6n+2),
  .guide-photos .img-row:nth-child(6n+3) {
    grid-column: 2;
  }

  /* small-left top & bottom */
  .guide-photos .img-row:nth-child(6n+4),
  .guide-photos .img-row:nth-child(6n+5) {
    grid-column: 1;
  }

  /* big-right */
  .guide-photos .img-row:nth-child(6n+6) {
    grid-column: 2;
    grid-row: span 2;
  }

  .guide-photos .img-row img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }




  .text-block {
    width: 90%;
  }






}




@media screen and (min-width:1000px) {
  .opening-heading {
    width: 40%;
  }

  .opening-heading h1 {
    font-size: 4rem;
  }

  .count-container h1 {
    font-size: 5rem;
    padding: 0 2rem;
  }

  .count-container h2 {
    font-size: 1.5rem;
  }



  .opening-container {
    padding: 5rem 3rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
  }

  .icon-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto;
    padding: 1rem 2rem 5rem 2rem;
  }

  .img-container {
    background-color: var(--primary-white);
    border-radius: 20px;
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    margin: 20px;
  }

  .container p {
    padding: 0 2rem;
    text-align: center;
  }


  .list {
    display: flex;
    flex-direction: row;

  }

  .list-item {
    padding: 1rem;
  }

  .screen-lg-hidden {
    display: none;
    transform: scale(0);

  }

  .menu-container {
    position: initial;
    width: initial;
    padding: initial;
    opacity: initial;
    transform: initial;
    background-color: transparent;
    display: flex;
  }

  .hero-content {
    display: flex;
    position: absolute;
    padding: 0 3rem;
    width: 500px;
    align-items: flex-start;
    justify-content: flex-start;


  }

  .main-heading {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
  }

  .hero {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: left;

  }

  .main-heading h1 {
    text-align: left;
    font-size: 4rem;
  }

  .main-heading p {
    text-align: left;
  }

  .locations-heading {
    width: 60%;
  }

  .locations-heading h1 {
    font-size: 4rem;
  }

  .btn-orange {

    font-size: 1.3rem;
    margin: 2rem;
    width: 400px;

  }

  .guide-heading {
    width: 60%;
    padding: 3rem 2rem;
  }

  .guide-heading h1 {
    font-size: 4rem;
  }

  

  .feedback-heading h1{
  font-size: 4rem;
  padding:4rem 2rem;
  color: #fff;
}

.feedback-container{
   background-color: #ffffff;
  padding: 3rem;
  margin: 0 2rem;
  border-radius: 20px;
  display: grid;
  grid-template-columns: repeat(2,1fr);
  grid-template-rows: auto;
  gap: 2rem;

}

.name{
  color: #000000;
}

  .footer-desc {
    text-align: center;
    padding: 2rem 10rem;
    font-size: 1.5rem;
  }


}


@media screen and (min-width:2000px) {}