/* Root colors and variables */
:root {
  --main-color: #E90330;
  --main-color-dark: #B00225;
  --background-color: #f7f7f7;
  --text-color: #222222;
  --text-light: #acacac;
  --white: #ffffff;
  --light-white: #dfdfdf;
  --border-radius: 8px;
  --max-width: 1200px;
}

/* Reset & base styles */
*,
*::before,
*::after {
  box-sizing: border-box;
}

::selection {
  background-color: var(--main-color);
  color: var(--white);
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: var(--background-color);
  color: var(--text-color);
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html,
body {
  margin: 0;
  padding: 0;
}

/* Container for consistent page width */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem 2rem;
}

.logo {
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--main-color);
  text-decoration: none;
  letter-spacing: 1px;
}

nav {
  display: flex;
  gap: 1.5rem;
}

nav a {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

nav a:hover {
  color: var(--main-color);
}

/* Main content */
main {
  margin: 0 auto;
}

h1,
h2,
h3,
h4,
h5 {
  color: var(--main-color);
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 1rem;
}

p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

a {
  color: var(--main-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--main-color-dark);
}

.btn {
  margin: 0 !important;
}


/* Flex utilities */
.flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.flex-column {
  display: flex;
  flex-direction: column;
}

.cursor-dot,
.cursor-ring {
  position: fixed;
  pointer-events: none;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  transition: transform .1s ease;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--main-color);
  border-radius: 50%;
  z-index: 9999;
}

.cursor-ring {
  width: 32px;
  height: 32px;
  border: 2px solid var(--main-color);
  border-radius: 50%;
  z-index: 9998;
}

footer {
  background: var(--main-color);
  color: var(--white);
  text-align: center;
  padding: 2rem;
  font-size: 1rem;
}

footer a {
  color: white;
  text-decoration: underline;

}

footer a:hover {
  color: rgba(255, 255, 255, 0.584);
  text-decoration: underline;

}

#heroSection {
  position: relative;
  left: 0;
  top: 0;
  width: 100% !important;
  /* full viewport width */
  min-height: 650px;
  display: flex;
  align-items: center !important;
  overflow: hidden;
  margin: 0;
  padding: 0;
  background: black;
  /* or your desired bg color */
  z-index: 0;
}




#heroContainer {
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  padding: 2rem;
  /* this is your internal padding */
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  color: white;
  text-align: left;
  position: relative;
  z-index: 1;
}



.hero-wrapper {
  width: 55%;
  max-width: 700px;
  margin: 2rem auto;
  padding: 2.5px;
  /* border thickness */

  /* Gradient border background */
  background: linear-gradient(45deg,
      #1a1a1a,
      /* very dark gray */
      #000000,
      /* black */
      #330000,
      /* very dark red */
    );

  /* Shadow for depth */
  box-shadow:
    0 8px 32px 0 rgba(233, 3, 48, 0.35),
    0 4px 16px 0 rgba(0, 0, 0, 0.4);

  position: relative;
  overflow: hidden;
  border: 2.5px solid;
  border-image-slice: 1;
  border-image-source: linear-gradient(45deg,
      #e90330,
      #b00225,
      #ffffff55);
}

.hero-content {
  border-radius: 2px;
  /* slightly smaller than wrapper */
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  padding: 3rem;
  color: var(--text-color);
  width: 100%;
  height: 100%;
}



.hero-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white) !important;
  margin-bottom: 1rem;
}

.hero-content p {
  color: var(--text-light) !important;
  margin-bottom: 2rem;
}

.hero-content .btn {
  background-color: transparent;
}

#typed-text {
  background-color: var(--main-color);
  color: var(--white);
  border-right: 2px solid white !important;
  padding-right: 5px;
  padding-left: 5px;
  white-space: nowrap;
  display: inline-block;
  animation: blinkCursor 0.8s steps(2) infinite;
}

/* Cursor blinking */
@keyframes blinkCursor {

  0%,
  100% {
    border-color: var(--main-color);
  }

  50% {
    border-color: transparent;
  }
}


.hero-image {
  width: 45%;
}

.hero-image img {
  width: 100%;
  max-width: 100%;
  animation: float 4s ease-in-out infinite;
  will-change: transform;
  display: block;
  margin: 0 auto;
}


#starfield {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}




.btn {
  text-align: center;
  display: inline-block;
  padding: 20px 40px;
  border: 1px solid #fff;
  color: #fff;
  background-color: var(--main-color);
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 2px;
  position: relative;
  overflow: hidden;
  margin: 0 20px;
  text-decoration: none;
  transition: color 0.3s;
}

.btn img {
  margin-bottom: -8px;
}

.btn:before {
  content: "";
  position: absolute;
  height: 150px;
  width: 50px;
  background: #fff;
  left: -55px;
  top: -40px;
  transform: rotate(37deg);
  transition: all 0.3s ease;
  opacity: 0.3;
}

.btn:hover:before {
  left: 95%;
}

.btn:hover {
  /* color: #000; */
}




header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 10000;
  background: transparent;
  transition: all 0.3s ease;
}

#headerSection {
  transition: all 0.3s ease;
}

/* When header becomes scrolled */
#headerSection.header-scrolled {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

#headerSection.header-scrolled ul li a {
  color: #fff !important;
}

#headerSection.header-scrolled .btn {
  background-color: var(--main-color);
  color: #fff;
}

/* Logo section */
.logo img {
  width: 220px;
  transition: all 0.3s ease;
  margin-bottom: -12px;
}

/* Inner layout */
.header-inner {
  margin: auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

/* Navigation desktop */
.desktop-nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

.desktop-nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.desktop-nav ul li a:hover {
  color: var(--main-color);
}

.active {
  color: var(--main-color) !important;
}


/* Hamburger toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.menu-toggle span {
  width: 28px;
  height: 3px;
  background: #333;
  transition: 0.3s;
}


.menu-toggle span.hamburger-white {
  background-color: white !important;
}

/* Fullscreen popup menu */
.full-screen-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #0d0d0d;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transform: translateY(-100%);
  transition: transform 0.4s ease-in-out;
  z-index: 99999;
}

.full-screen-menu.active {
  transform: translateY(0%);
}

.full-screen-menu .close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}

.full-screen-menu ul {
  list-style: none;
  text-align: center;
  padding: 0;
}

.full-screen-menu ul li {
  margin: 20px 0;
}

.full-screen-menu ul li a {
  font-size: 24px;
  color: white;
  text-decoration: none;
}

.full-screen-menu .btn {
  margin-top: 40px;
}


#scrollToTopBtn {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 999;
  background-color: #000;
  color: #fff;
  border: none;
  outline: none;
  padding: 5px 7px;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.8);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

#scrollToTopBtn img {
  width: 50px;
  height: auto;
}

#scrollToTopBtn:hover {
  background-color: #333;
  transform: scale(1);
}

#scrollToTopBtn.show {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}





#aboutSection {
  min-height: 400px;
  padding: 100px 10vw;
  margin: auto;
}

.about-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  display: flex;
  gap: 50px;
}

.about-container .btn {
  margin: 0;
}

.about-image {
  width: 40%;
  margin: auto;
  padding: auto;
  text-align: center;
}

.about-image img {
  width: 100%;
}

.about-content {
  width: 60%;
}



.about-content p {
  font-size: 17px;
  color: #717171;
  line-height: 25px;
  text-align: justify;
}

#planetNamesSection {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--white);
  text-align: center;

  padding: 50px 10vw;
}

#planetNamesSection img {
  width: 100%;
}


#imageOfTheDaySection {
  min-height: 400px;
  padding: 100px 10vw;
  margin: auto;
}

.image-of-the-day {
  width: 45%;
}

.image-of-the-day-content {
  width: 55%;
}

.image-of-the-day img {
  border-radius: 20px 50px 20px 50px;
  width: 100%;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
}

.spacing-letter-text {
  letter-spacing: 10px;
  text-transform: uppercase;
  font-weight: 300;
}



#engineSection {
  min-height: 200px;
  padding: 100px 0;
  margin: auto;
  background-color: var(--white) !important;
}

.engines-slide-content {
  width: 100%;
  overflow: hidden;
  background: transparent;
  padding: 10px 0;

}

.engine-title {
  font-size: 45px;
  text-transform: uppercase;
  color: hsla(0, 0%, 0%, 0.233);
  text-align: center;
  margin-bottom: 0;
}

.engines-slide-content h4 {
  font-size: 20px;
  text-transform: uppercase;
  color: #00000033;
  /* text-align: center; */
  padding-left: 30px;
  margin-bottom: 15px;
}

.engines-title {
  font-size: 45px;
  text-transform: uppercase;
  color: #00000033;
}

.engines-slide {
  display: flex;
  width: max-content;
  animation: scroll 25s linear infinite;
}

.engines-slide-text {
  white-space: nowrap;
  font-size: 35px;
  font-weight: 500;
  padding: 0 1rem;
  color: #111;
  display: flex;
  align-items: center;
}

.dot {
  width: 12px;
  height: 12px;
  background: #000;
  border-radius: 50%;
  margin: 0 1rem;
  align-self: center;
}



#satelliteTracker {
  min-height: 200px;
  padding: 100px 0;
  margin: auto;
  padding: 100px 10vw;
}



.tracker-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 30px;

}

.tracker-content {
  width: 50%;
}

.tracker-frame-wrapper {
  width: 50%;
}

.tracker-title {
  font-size: 2rem;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.tracker-description {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.tracker-frame-wrapper {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  margin-bottom: 25px;
}

.tracker-iframe {
  display: block;
  width: 100%;
  height: 400px;
  border: none;
}


#learnMoreSection {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: var(--light-white);
  padding: 70px 10vw;
}

.learn-more-content p {
  color: #717171;
}

.learn-more-images {
  padding: 25px 0;
}

.learn-more-images {
  display: flex;
  justify-content: space-evenly;
  align-items: stretch;
}





#advenntureFixedSection {
  width: 100%;
  background-image: url("../images/mars-image.jpg");
  min-height: 450px;
  background-color: white;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
}

.adventure-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: nowrap;
  padding: 70px 10vw;
  gap: 30;
}

.adventure-content h3 {
  color: var(--white);
  font-size: 1.7rem;
}

.adventure-content {
  width: 60%;
}





/* Blogs page */

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--main-color);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  justify-content: center;
  /* 💡 This centers the entire grid horizontally */
}

.blog-card {
  width: 300px;
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}


.blog-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.blog-content {
  padding: 1rem;
}

.blog-content .btn {
  width: 100%;
}

.blog-content h3 {
  font-size: 1.2rem;
  color: var(--main-color);
  margin-bottom: 0.5rem;
}

.blog-content p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

#blogList {
  padding: 70px 10vw;
}

.blog-grid {
  display: grid;
  justify-items: center;
  /* horizontally centers each item */
  align-items: start;
  /* or center if you want vertical centering */
}


/* Blog single page */
.blog-single {
  max-width: 900px;
  margin: 70px auto 60px;
  padding: 0 20px;
}

.blog-hero {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 30px;
}

.blog-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.blog-meta {
  color: #777;
  font-size: 0.9rem;
  margin-bottom: 30px;
}

.blog-single-content p {
  line-height: 1.8;
  font-size: 1.1rem;
  margin-bottom: 20px;
}
.blog-single-content::first-letter {
  font-size: 2rem;
  font-weight: bold;
  color: white;
  background-color: black;
  border-radius: 2px;
  box-shadow: 3px 3px 0 var(--main-color);
  font-size: 250%;
  padding: 6px 4px;
  margin-right: 6px;
  float: left;
}

.blog-single-content h2 {
  margin-top: 40px;
  font-size: 1.6rem;
}

.related-posts {
  margin-top: 60px;
}

.related-posts h3 {
  margin-bottom: 20px;
}

.related-posts ul {
  list-style: none;
  padding: 0;
}

.related-posts li a {
  text-decoration: none;
  color: #e90330;
  display: block;
  margin-bottom: 10px;
}




/* Contact page */

.contact-section {
  padding: 60px 5%;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-section h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #111;
  text-align: center;
}

.subtitle {
  text-align: center;
  margin-bottom: 40px;
  color: #777;
}

.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 50px;
}

.contact-info,
.contact-form {
  flex: 1 1 45%;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.contact-info h2,
.contact-form h2 {
  margin-bottom: 20px;
  color: #222;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
}

.contact-form .btn {
  width: 100%;
}

/* Map */
.map-container {
  margin-top: 40px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.map-container h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #333;
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: 0;
  border-radius: 10px;
}

.map-container {
  padding: 80px 10vw;
  background-color: white;
}


/* About us page */

.about-section .intro {
  text-align: center;
  padding: 60px 5%;
  max-width: 800px;
  margin: 0 auto;
}

.about-section h1 {
  font-size: 2.8rem;
  color: #111;
}

.subtitle {
  color: #666;
  margin-top: 10px;
  font-size: 1.1rem;
}

/* Team Section */
.team-section {
  padding: 60px 5%;
  text-align: center;
}

.team-section h2 {
  font-size: 2.2rem;
  margin-bottom: 40px;
  color: #222;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.team-member {
  background: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.team-member .team-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px 10px 0px 0px;
  margin-bottom: 15px;
  border-bottom: 3px solid #d47386;
}

.team-member h3 {
  margin: 10px 0 5px;
  font-size: 1.2rem;
  color: #333;
}

.team-member p {
  color: #777;
  font-size: 0.95rem;
}



.floating-image {
  animation: float 4s ease-in-out infinite;
  will-change: transform;
}

.team-social {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 10px;

  margin-bottom: 20px;
}

.social-icon {
  width: 36px;
  height: 36px;
  background-color: var(--main-color);
  /* fallback or default */
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.social-icon img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
  /* makes icon white */
}

.social-icon:hover {
  background-color: var(--main-color-dark);
  transform: scale(1.1);
  margin-top: -5px;
  transition: all ease-in-out 0.3s;
}




.error-page {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  background-color: black;
  z-index: 1;
}


.bg-scroll {
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 700px;
  background: url('../images/space.jpg') repeat-x;
  animation: bg-move 20s linear infinite;
  z-index: -1;
}

@keyframes bg-move {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.error-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
  padding: 70px 5vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 20px;
}

.error-content .floating-image {
  max-width: 300px;
  margin-bottom: 1.5rem;
}

.error-content h1 {
  font-size: 5rem;
  margin: 0;
  font-weight: bold;
  color: var(--main-color);
}

.error-content p {
  color: var(--text-color);
}


/* Astronaut */
.astronaut {
  position: absolute;
  bottom: 10%;
  right: 8%;
  width: 400px;
  animation: float 6s ease-in-out infinite;
}

/* Responsive */
@media (max-width: 768px) {
  .error-content h1 {
    font-size: 4rem;
  }

  .astronaut {
    width: 120px;
    right: 5%;
  }

  .error-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    text-align: center;
  }

  .error-page {
    height: 800px;
    padding: 50px 5vw;
  }

  .error-content .floating-image {
    max-width: 50 !important;
    margin: auto;
  }
}



@keyframes scroll {
  from {
    transform: translateX(0%);
  }

  to {
    transform: translateX(-50%);
  }
}

.reverse .reverse-track {
  animation: scroll-reverse 25s linear infinite;
}

@keyframes scroll-reverse {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0%);
  }
}


@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0px);
  }
}






/* Responsive typography */
@media (max-width: 768px) {

  h1 {
    font-size: 1.8rem;
  }

  .container {
    padding: 1rem;
  }

  nav {
    justify-content: center;
    width: 100%;
    margin-top: 1rem;
  }

  #heroSection {
    min-height: 900px;
  }

  #heroContainer {
    flex-direction: column;
    flex-wrap: wrap;
    padding: 1rem;
    height: auto;
  }

  .hero-wrapper {
    width: 100%;
  }

  .hero-content {
    margin-bottom: 0 !important;
  }

  #heroSection h1 {
    font-size: 2rem;
  }

  #heroSection p {
    font-size: 1rem;
  }

  .hero-content,
  .hero-image {
    margin-bottom: 1.5rem;
  }

  .hero-image {
    width: 100%;
  }

  .cursor-dot,
  .cursor-ring {
    display: none;
  }

  .contact-wrapper {
    flex-direction: column;
  }

  .contact-info,
  .contact-form {
    flex: 1 1 100%;
  }

  .about-section h1 {
    font-size: 2rem;
  }

  .team-section h2 {
    font-size: 1.8rem;
  }

  #aboutSection {
    padding: 60px 5vw !important;
  }

  .about-container {
    flex-direction: column-reverse;
    flex-wrap: wrap;
  }

  .about-image,
  .about-content {
    width: 100%;
    text-align: center;
  }

  #planetNamesSection {
    padding: 50px 5vw;
  }

  #imageOfTheDaySection {
    padding: 50px 5vw;
  }

  .about-container {
    flex-direction: column;
    flex-wrap: wrap;
    text-align: center;
  }

  #imageOfTheDaySection .spacing-letter-text {
    text-align: center;
  }

  .engine-title {
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
  }

  #satelliteTracker {
    padding: 60px 5vw;
    text-align: center;
  }

  .tracker-container {
    flex-direction: column;
  }

  .tracker-content,
  .tracker-frame-wrapper {
    width: 100%;
  }

  .adventure-container {
    padding: 60px 5vw;
    text-align: center;
    flex-direction: column;
  }

  .adventure-container h3 {
    font-size: 2rem;
  }

  .adventure-content,
  .adventure-call-to-action {
    width: 100%;
  }

  #learnMoreSection {
    padding: 60px 5vw;
    flex-wrap: wrap;
  }

  .learn-more-images {
    flex-direction: column;
    align-items: center;
    flex-wrap: wrap;
  }

  #blogList {
    padding: 60px 5vw;
  }

  .blog-card {
    width: 100% !important;
  }

  .contact-section {
    padding: 60px 5vw;
  }

  .map-container {
    padding: 50px 5vw;
  }

  #scrollToTopBtn {
    bottom: 30px;
    right: 20px;
  }

  .learn-more-images img {
    width: 100%;
  }

  .blog-title {
    font-size: 1.8rem;
  }
}


/* Responsive Header For Mobiles and Tablets View*/
@media (max-width: 992px) {

  .desktop-nav,
  .desktop-btn {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .learn-more-images {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
  }

  #aboutSection {
    padding: 60px 10vw;
  }

  .about-image,
  .about-content {
    width: 100%;
  }

  .about-container {
    flex-direction: column-reverse;
  }
}

@media (max-width: 1280px) {
  .learn-more-images {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
  }
}