* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: hidden;
}
ul {
  list-style-type: none;
}
a {
  text-decoration: none;
  color: #000;
}
a:visited,
a:active,
a:hover {
  text-decoration: none;
}
button {
  border-radius: 25px;
  border: none;
  padding: 0.6rem;
  cursor: pointer;
}
img {
  border-radius: 25px;
}
.logo {
  margin-left: 2rem;
  cursor: pointer;
}
.logo > p {
  font-size: 1.4rem;
  font-weight: 600;
}
.schedule-btn {
  color: #fff;
  background-color: #ffffff00;
  border: 1px solid white;
  border-radius: 25px;
  margin-right: 2rem;
  cursor: pointer;
  width: 9.6rem !important;
}
.schedule-btn a {
  color: #fff;
}

.schedule-btn:hover {
  color: #000;
  background-color: #fff;
  transition: all 200ms ease;
}
.schedule-btn:hover a {
  color: #000;
}
.navitem {
  position: relative;
  cursor: pointer;
  padding-bottom: 6px;
}
.navitem::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 0%;
  height: 2px;
  background-color: white;
  transition: width 0.3s ease;
}
.navitem a {
  color: white;
}
.navitem:hover::after {
  width: 100%;
}

nav {
  height: 5vw;

  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.8);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  position: relative;
  z-index: 300;
}
.nav-items {
  display: flex;
  justify-content: space-around;
  align-items: center;
  column-gap: 2rem;
}

.hamburger {
  margin-top: 0.4rem;
  margin-right: 12px;
  border-radius: 8px;
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  z-index: 400;
}
.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.sidebar-panel {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(10, 18, 8, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 0 0 16px 16px;
  z-index: 200;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 20px 20px;
}
.sidebar-panel.open {
  transform: translateY(0);
}

.sidebar-nav-spacer {
  height: 64px;
}

.sidebar-panel-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 16px;
}
.sidebar-panel-links li a {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-size: 15px;
  padding: 11px 14px;
  border-radius: 9px;
  transition: all 0.18s;
}
.sidebar-panel-links li a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  padding-left: 20px;
}

.sidebar-panel-footer {
  padding-top: 14px;
  border-top: 0.5px solid rgba(255, 255, 255, 0.1);
}
.sidebar-schedule-btn {
  width: 100%;
  color: #fff;
  background-color: transparent;
  border: 1px solid white;
  border-radius: 25px;
  padding: 10px;
  font-size: 14px;
  cursor: pointer;
  transition: all 200ms ease;
}
.sidebar-schedule-btn:hover {
  color: #000;
  background-color: #fff;
}

.home {
  overflow: hidden;
  height: 100vh;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.55) 0%, transparent 30%),
    url(assets/images/hero.jpg);
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
  width: 100%;
}
.hero {
  margin-left: 5rem;
  margin-top: 3.2rem;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  color: white;
}
.main-des {
  padding: 1rem;
  font-weight: 500;
  border: none;
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
  color: #1a1a1a;
  margin-bottom: 1.6rem;
}
.main-light {
  font-size: 3rem;
  font-weight: 600;
}
.main-dark {
  font-size: 4.8rem;
  font-weight: 800;
}
.main-explore {
  width: 11rem;
  height: 2.8rem;
  overflow: hidden;
  font-weight: 500;
  padding: 1rem;
  margin-top: 1rem;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #ffffff;
  color: #000000;
  border-radius: 25px;
  margin-left: 0.4rem;
  transition: transform 0.3s ease;
}
.main-explore:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}
.main-explore img {
  transform: scale(1.5);
  height: 100%;
  margin-right: 0.4rem;
}

.gradient-text {
  font-size: 4.8rem;
  font-weight: 800;

  background: linear-gradient(to right, #ffffff 10%, #a3a3a3 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.extralines {
  margin-top: 7rem;
  width: 40rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.extrl {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}
.exty {
  width: 50rem;
  margin-top: 6rem;
  gap: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.socials {
  position: absolute;
  bottom: 3rem;
  right: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}
.mainicon {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);

  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  flex-shrink: 0;
  box-sizing: border-box;
}

.mainicon:hover {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.9);
  color: black;
  transform: scale(1.01);
  transition: 200ms ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}
.mainicon:hover a {
  color: #000;
}
.mainicon a {
  font-size: 1.2rem;
  color: #fff;
}
.extrl span {
  font-size: 0.95rem;
}
.text-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 1rem;
}
.line {
  height: 2px;
  flex: 1;
  margin-left: 0.8rem;

  background-color: black;
}
.about-us-heading {
  white-space: nowrap;
  margin-right: 2rem;
  font-size: 1.2rem;
  font-weight: 500;
}
.about-us > p {
  margin-left: 2rem;
}
.text-dark {
  color: #000;
  margin-bottom: 0.3rem;
  font-size: 2.2rem;
  font-weight: 500;
  margin-top: 1rem;
  margin-left: 2rem;
}
.text-light {
  color: #999999;
  font-size: 1.8rem;
  font-weight: 500;
  margin-left: 2rem;
}
.about-us-text {
  margin-top: 2.3rem;
  display: flex;

  gap: 15rem;
}
.about-us-text-left {
  margin-left: 2rem;

  font-size: 1.3rem;
}
.about-us-text-right {
  margin-right: 2rem;
}
.about-us-text p {
  font-size: 1.2rem;
}
.about-us-others {
  display: flex;
  gap: 8rem;
  margin: 2rem;
  font-size: 20rem;
}
.about-title {
  font-size: 2.2rem;
  margin-bottom: 1.3rem;
  font-weight: 500;
}
.about-description {
  font-size: 1.4rem;
}
.river {
  width: 100%;
  height: 18rem;
  object-fit: cover;
  object-position: 50% 57%;
  border-radius: 25px;
}
.river-img-wrapper {
  margin-top: 2rem;
  padding: 0 2rem;
  position: relative;
}
.center-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 1.1rem;
  transform: translate(-50%, -50%);
  z-index: 1;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: 0.3s;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: white;
  border: 1px solid white;
}

.center-btn:hover {
  background: rgba(255, 255, 255, 0.9);
  color: black;

  transform: translate(-50%, -50%) scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.popular-text-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 1rem;
}
.popular-line {
  height: 3px;
  flex: 1;

  background-color: black;
}
.popular-line-left {
  margin-left: 0.8rem;
}
.popular-line-right {
  margin-right: 0.8rem;
}
.popular-destination-heading {
  font-weight: 500;
  font-size: 1.2rem;
}
.popular-short-des {
  display: flex;
  margin-top: 4rem;
  align-items: center;
}
.popular-text-left {
  margin-left: 2rem;
  margin-right: 5rem;
  flex: 1.5;
}
.popular-text-left p {
  font-size: 2.2rem;
  font-weight: 500;
}
.light-color {
  color: #999999;
  font-size: 2.2rem;
  font-weight: 500;
}
.popular-text-right {
  flex: 1.5;
  margin-right: 2rem;
}
.popular-text-right p {
  text-align: right;

  font-size: 1.1rem;
}

.popular-btn {
  color: #000000;
  background-color: #ffffff00;
  border: 2px solid rgb(0, 0, 0);
  border-radius: 25px;
  margin-right: 2rem;
  font-weight: 500;
  cursor: pointer;
  padding: 0.7rem;
  margin-top: 0.8rem;
  position: absolute;
  right: 0rem;
}
.popular-btn:hover {
  color: #ffffff;
  background-color: #000000;
  border-radius: 27px;
  transition: all 150ms ease;
}

.popular-image {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 5rem;
  padding: 0 2rem;
}

.card {
  position: relative;
  width: 30%;
  height: 35rem;
  overflow: hidden;
  border-radius: 20px;
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 5rem 2rem 2rem;
  box-sizing: border-box;
  color: white;
  background-color: transparent !important;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.5) 70%,
    rgba(0, 0, 0, 0) 100%
  );
  transition: all 0.4s ease-in-out;
}

.title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.title {
  font-size: 2.2rem;
  font-weight: bold;
  margin: 0;
}

.description {
  max-height: 0;
  opacity: 0;
  margin-top: 1rem;
  font-size: 1.1rem;
  line-height: 1.4;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

.card:hover img {
  transform: scale(1.05);
}

.card:hover .description {
  max-height: 200px;
  opacity: 1;
}

.card:hover .content {
  padding-top: 8rem;
}

.gallery-sec {
  margin-top: 2rem;
}
.gallery {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.gellery-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.gallery-small-txt {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.gallery-container {
  position: relative;
  max-width: 90vw;

  margin: auto;
  padding: 20px;
}

.grid-layout {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 230px;
  padding: 1rem;
  overflow: hidden;
  gap: 20px;
}

.item {
  overflow: hidden;
  border-radius: 20px;
  transition: all 0.4s ease;
}

.item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.img1 {
  object-fit: cover;
  object-position: center;
}
.item-1 {
  grid-row: span 2;
}
.item-2 {
  grid-row: span 2;
}

.item-5 {
  grid-column: span 2;
}
.item-6 {
  grid-column: span 2;
}

.grid-layout:hover .item {
  transform: scale(0.92);
  overflow: hidden;
  opacity: 0.7;
}

.grid-layout .item:hover {
  transform: scale(1.08);
  opacity: 1;
  z-index: 2;
}

.item:hover img {
  transform: scale(1.1);
}

.explore-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  padding: 12px 25px;
  border-radius: 30px;
  border: none;
  background: rgb(255, 255, 255);
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  z-index: 10;
}

.explore-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background-color: #000;
  color: #ffffff;
  transition: 100ms ease;
}

.faq {
  margin: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  column-gap: 4rem;
}
.faq-left {
  flex: 2;
}
.faq-right {
  flex: 1;
  height: 100%;
}

.faq-light {
  color: #999999;
  margin-bottom: 1rem;
}
.faq-title {
  font-size: 2.4rem;

  font-weight: 500;
}

.faq-subtitle {
  color: #666;
  margin-bottom: 2rem;
}

.faq-item {
  background: #fff;
  border-radius: 20px;
  margin-bottom: 1rem;
  border: 1px solid #e0e0e0;
  padding: 18px 20px;
  cursor: pointer;
  transition: 0.3s;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
  font-weight: 600;
}

.faq-icon {
  font-size: 2rem;
  transition: 0.3s;
  overflow: hidden;
  font-weight: 300;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  color: #555;
  transition: max-height 0.3s ease;
  margin-top: 10px;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.additional-q {
  position: relative;
  height: 105vh;
  width: 100%;
  overflow: hidden;
  border-radius: 25px;
}
.additional-q::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.5) 20%,
    rgba(0, 0, 0, 0) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.additional-q img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.additional-q-text {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);

  width: 90%;
  padding: 2rem 1rem;
  z-index: 2;

  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 25px;
  color: white;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.addq {
  font-size: 1.8rem;
  font-weight: 500;
}
.addqe {
  font-size: 1rem;

  text-align: center;
}
.addbtn {
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  overflow: hidden;
  transition: 0.3s;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: white;
  border: 1px solid white;
}
.addbtn:hover {
  background: rgba(255, 255, 255, 0.9);
  color: black;
  overflow: hidden;

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.newsletter {
  position: relative;
  width: 100%;
  min-height: 300px;

  overflow: hidden;
  margin: 0 auto;
  background: #0d0d0d;
  padding: 1rem;
}

.bridge-wrapper {
  position: absolute;
  inset: 16px;
  border-radius: 12px;
  overflow: hidden;
}

.bridge-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55) saturate(1.1);
}

.newsletter .overlay {
  position: absolute;
  inset: 16px;
  border-radius: 12px;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.15) 0%,
    rgba(0, 0, 0, 0.5) 100%
  );
}

.news-text {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 24px 56px;
  text-align: center;
  gap: 24px;
}

.news-text p {
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  font-weight: 500;
  color: #ffffff;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
}

.news-text form {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50px;
  padding: 5px 5px 5px 20px;
  backdrop-filter: blur(10px);
  width: 100%;
  max-width: 440px;
  box-sizing: border-box;
}

.news-text form input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: none;
  outline: none;
  color: #ffffff;
}

.news-text form input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.news-text form button {
  background: #ffffff;
  color: #111111;
  border: none;
  flex-shrink: 0;
  border-radius: 50px;
  padding: 10px 22px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition:
    background 0.2s,
    transform 0.15s;
}
.news-text form button:hover {
  transform: scale(1.03);
}

.footer-bottom {
  background: #111111;
  padding: 36px 40px 36px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 32px 24px;
  align-items: start;
}

.footer-left h3 {
  font-size: 1.6rem;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 12px;
}

.footer-left p {
  font-size: 0.82rem;
  line-height: 1.7;
  color: #b0b0b0;
  max-width: 300px;
}

.footer-links p,
.footer-social p {
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #888888;
  margin-bottom: 16px;
}

.footer-links ul,
.footer-social ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links ul li a,
.footer-social ul li a {
  text-decoration: none;
  color: rgba(232, 226, 217, 0.8);
  font-size: 0.88rem;
  transition: color 0.2s;
}

.footer-links ul li a:hover,
.footer-social ul li a:hover {
  color: #ffffff;
}

.footer-more {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.footer-more .badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(232, 226, 217, 0.75);
  letter-spacing: 0.04em;
  line-height: 1.3;
}

.badge svg {
  flex-shrink: 0;
}

.footer-more a {
  text-decoration: none;
  color: #888888;
  font-size: 0.82rem;
  transition: color 0.2s;
}

.footer-more a:hover {
  color: #ffffff;
}

@media (max-width: 789px) {
  .nav-items {
    display: none;
  }
  .schedule-btn {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .logo > p {
    font-size: 2rem;
    font-weight: 600;
  }
  nav {
    height: 6vw;
  }
}

@media (max-width: 572px) {
  nav {
    height: 9vw;
  }
}

@media (min-width: 790px) {
  .hamburger {
    display: none;
  }
  .sidebar-panel {
    display: none;
  }
}

@media (max-width: 560px) {
  .footer-bottom {
    grid-template-columns: 1fr;
    padding: 32px 20px 28px;
    gap: 28px;
  }
  .news-text form {
    max-width: 100%;
  }
}

@media (max-width: 971px) {
  .about-us-text,
  .about-us-others,
  .popular-short-des,
  .popular-image,
  .faq {
    flex-direction: column;
    gap: 1rem;
  }
  * {
    font-size: 14px;
  }
  .footer-bottom {
    grid-template-columns: 1fr 1fr;
    padding: 40px 28px 32px;
  }
  .additional-q {
    height: 70vh;
  }
  .about-us-others {
    gap: 2.9rem;
  }
  .about-title {
    margin-bottom: 0.1rem !important;
  }
  .footer-left {
    grid-column: 1 / -1;
  }
  .socials {
    flex-direction: row;
    position: static;
    margin-top: 5rem;
  }
  .exty {
    display: none;
  }
  .about-us-text-right p {
    margin-left: 2rem;
    margin-right: 2rem;
  }

  .popular-text-right p {
    text-align: left;
    margin-left: 2rem;
  }
  .home {
    height: 80vh;
  }
  .popular-text-right p,
  .about-us-text p,
  .gallery-small-txt,
  .faq-subtitle,
  .faq-question,
  .faq-answer,
  .footer p {
    font-size: 1.2rem;
  }
  .gallery-small-txt {
    margin: 1rem 1.2rem;
  }
  .mob-sp-des {
    margin-left: 2rem;
    margin-right: 2rem !important;
    text-align: left;
    font-size: 1.6rem !important;
  }
  nav {
    margin-top: 1rem;
    overflow: hidden;
  }
  .agra {
    object-fit: cover;
    object-position: 50% 20%;
  }
  .description {
    font-size: 1.3rem;
  }
  .popular-text-left p {
    font-size: 2.8rem;
  }
  .gallary-heading span {
    font-size: 2.9rem;
    text-align: center;
    margin: 0px auto;
  }
  .faq-title {
    font-size: 2.8rem;
  }
  .mob-sp-title {
    font-size: 2.8rem !important;
  }

  .popular-text-left {
    text-align: left;
    flex: 1;
    margin-left: 2rem !important;
    margin-right: 2rem !important;
  }
  .popular-text-left p {
    display: inline-block;
  }
  .popular-text-right {
    margin-bottom: 1rem;
  }

  .popular-image {
    align-items: center;
    margin-top: 0.2rem;
  }

  .card {
    width: 90%;
    height: 35rem;
  }

  .popular-btn {
    position: static;
    display: block;
    margin: 1rem auto;
  }
  .faq-right {
    width: 100%;
  }
  .footer-bottom {
    padding-top: 28px;
  }
  .news-text p {
    font-size: 2.2rem;
  }
  .news-sub {
    font-size: 1rem !important;
    overflow: hidden;
  }
  .news-text form {
    overflow-y: hidden;
    padding: 4px 4px 4px 16px;
  }
  .news-text input {
    font-size: 1.1rem;
  }
  .footer-left h3 {
    font-size: 2rem;
  }
  .footer-left p {
    font-size: 0.9rem;
  }
  .footer-links p,
  .footer-social p {
    font-size: 0.9rem;
  }
  .footer-links a,
  .footer-social a {
    font-size: 1rem !important;
  }
  .badge {
    font-size: 1rem;
  }
  .terms,
  .privacy {
    font-size: 1rem !important;
  }
}
@media (max-width: 680px) {
  * {
    font-size: 12px;
  }
}
@media (max-width: 1024px) {
  .grid-layout {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }

  .item-1,
  .item-2,
  .item-5,
  .item-6 {
    display: none !important;
  }

  @media (max-width: 600px) {
    .grid-layout {
      grid-template-columns: 1fr;
      grid-auto-rows: 220px;
    }

    .gallery-container {
      padding: 10px;
    }

    .item {
      grid-column: span 1 !important;
      grid-row: span 1 !important;
    }

    .explore-btn {
      padding: 10px 18px;
      font-size: 14px;
    }

    .grid-layout:hover .item {
      transform: none;
      opacity: 1;
    }
  }

  @media (max-width: 500px) {
    * {
      font-size: 10px;
    }
    .home {
      height: 80vh;
    }
    .text-dark,
    .text-light {
      font-size: 1.5rem;
    }
    .additional-q {
      height: 50vh;
    }
    .main-des {
      font-weight: 500;
    }

    .popular-btn {
      position: static;
      margin-top: 1rem;
      margin-left: 2rem;
    }
    .footer-left p {
      font-size: 1.1rem;
    }
  }
}
