.swiper {
  width: 100%;
  overflow: hidden;
}

.hero-swiper,
.swiper,
.swiper-wrapper,
.swiper-slide {
  height: 100vh;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.hero-swiper {
  position: relative;
  color: #fff;
}

.swiper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
  pointer-events: none;
}

.hero-swiper h2{
  line-height: 1.5;
}


.hero-content {
  position: absolute;
  bottom: 0;
  left: 1rem;
  z-index: 3;
  transform: translate(0%, -15%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
  text-shadow: 0 2px 2px rgb(0, 0, 0);
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-text p {
  max-width: 250px;
}

.cta-btns {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cta-primary {
  background: #d4b401;
  border: 1.5px solid #d4b401;
  color: #ffffff;
}
.cta-secondary {
  background: transparent;
  color: #ffffff;
  border: 1.5px solid #ffffff;
}

.sections {
  background: #f8fafc;
}

.our-divisions,
.why-us {
  padding: 1rem 1rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.section-heading h3 {
  color: #0b1f3a;
  font-family: "Inter" sans-serif;
}

.our-divisions .row {
  row-gap: 1rem;
}

.our-divisions .card {
  border: none;
  border-radius: 1rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.108);
}

.our-divisions .card-body {
  padding: 1rem;
}

.our-divisions .card-content {
  display: flex;
  flex-direction: row;
  padding: 1rem;
  gap: 2rem;
  align-items: flex-start;
}


.our-divisions .card-details {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  color: #0b1f3a;
}

.our-divisions .card-title {
  color: #0b1f3a;
  font-size: 18px;
  font-weight: 500;
}

.our-divisions .card-description {
  color: #0b1f3a;
  font-size: 14px;
  font-weight: 400;
}

.our-divisions .card-details a {
  text-decoration: none;
  color: #0A8F3D;
  margin-top: 0.5rem;
}

.section-divider {
  background: #e5e7eb;
  margin: 0 1rem;
  height: 3px;
  border-radius: 2rem;
  opacity: 1;
}

.company-stat {
  background: #0b1f3a;
  padding: 3rem;
}

.stat-container {
  display: flex;
  justify-content: space-between;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1rem;
}

.stat-num h3 {
  margin: 0;
  color: #e4e4e4;
}

.stat-text span {
  margin: 0;
  color: #e4e4e4;
}

.section-content-grid {
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(2, 50%);
  gap: 1rem;
  padding: 1rem;
}

.why-us .section-content-grid .card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.why-us .card {
  flex-direction: row;
  gap: 2rem;
  padding: 2rem;
  border:none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.108);;
}

.why-us .card-content .card-title {
  font-size: 13px;
  text-align: center;
}

.why-section {
  display: none;
}

.partner-banner {
  background: #0b1f3a;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 2rem 3rem;
  color: #f8fafc;
  margin: 0 1rem;
  border-radius: 2rem;
  gap: 1rem;
}

.banner-header {
  text-align: center;
  font-size: 20px;
  line-height: 1.5;
}

.banner-description {
  text-align: center;
  font-size: 14px;
}

.banner-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.banner-cta .cta-primary {
  background-color: #d4b401;
  border: 1.5px solid #d4b401;
  font-weight: 500;
  font-size: 14px;
}

.banner-cta .cta-secondary {
  font-weight: 500;
  font-size: 14px;
  border: 1.5px solid #ffffff;
}

.featured-hostels {
  padding: 4rem 1rem 0;
}

.section-line {
  background: rgb(212, 180, 1);
  height: 0.2rem;
  width: 3rem;
  border-radius: 3rem;
}

.hostel-scroll {
  margin-top: 2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
}

.hostel-scroll::-webkit-scrollbar {
  display: none;
}

.hostel-card {
  min-width: 220px;
  flex-shrink: 0;
  scroll-snap-align: start;
}

.hostel-scroll .link {
  margin: 0 1rem;
  min-width: max-content;
}

.hostel-card a {
  text-decoration: none;
  color: #0b1f3a;
  font-size: 14px;
  font-weight: 500;
  background: #e5e7eb88;
  border: 1px solid #e5e7eb;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
}

.hostel-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 12px;
}

.testimonials {
  padding: 2rem 2rem 0;
}

.testimonials .section-heading {
  margin-bottom: 2rem;
}

.testimonial-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  min-height: 240px;
}

.quote-icon {
  font-size: 1.5rem;
  line-height: 1;
}

.carousel-inner {
  border-radius: 1rem;
}

.carousel-indicators {
  position: relative;
  margin-top: 20px;
}

.carousel-indicators button {
  width: 10px !important;
  height: 10px !important;
  border-radius: 50%;
  background-color: #d4a017 !important;
}

.newsletter {
  padding: 0 1rem 2rem;
  background: #e5e7eb;
  color: #0b1f3a;
}

.newsletter .newsletter-content {
  padding: 2rem 0 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 0.5rem;
}

.newsletter-content span {
  font-size: 14px;
}

.newsletter form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 100%;
  margin-top: 0.5rem;
}

form input {
  background-color: #f8fafc;
  border: 2px solid #e5e7eb;
  font-size: 16px;
  color: #0000009b;
  border-radius: 0.4rem;
  padding: 1rem;
  transition: all 0.3s ease;
  outline: none;
}

form input:focus {
  border-color: #c48200;
}

.newsletter button {
  background-color: #c48200;
  color: #ffffff;
  font-weight: 500;
  font-size: 15px;
  padding: 1rem;
  transition: all 0.5s ease;
}

@media (min-width: 768px) {

  .cta-btns {
    flex-direction: row;
  }

  .our-divisions {
    padding-top: 3rem;
  }

  .our-divisions .card-content {
    padding: 1rem 0;
  }

  .why-us {
    padding: 2rem;
  }

  .why-us-content {
    display: grid;
    justify-content: center;
    grid-template-columns: repeat(2, 50%);
    gap: 1rem;
    padding: 2rem;
  }

  .why-us-item {
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 1rem;
    padding: 2rem 2rem 1rem;
    border: 1px solid #0a8f3d40;
    border-radius: 1rem;
  }

  .why-us-item-title {
    color: #0b1f3a;
    font-size: 19px;
    font-weight: 500;
    margin-top: 1rem;
    text-align: center;
  }

  .why-us-item-text {
    color: #0b1f3a;
    font-size: 16px;
    text-align: center;
    line-height: 2;
  }

  .featured-hostels {
    padding-top: 2rem;
    padding-bottom: 2rem;
    margin: 0;
  }

  .featured-hostels .section-heading {
    margin-bottom: 3em;
  }

  .featured-hostels .d-md-block {
    text-align: center;
    margin-top: 1rem;
  }

  .featured-hostels .d-md-block a {
    text-decoration: none;
    color: #0b1f3a;
    font-weight: 500;
    transition: all 0.3s ease;
  }

  .featured-hostels .d-md-block a:hover {
    color: #d4b401;
  }

  .mini-hero {
    border: 1px solid #000;
    background-color: #0b1f3a;
    color: #fff;
    padding: 1rem 0 2rem;
  }

  .mini-hero .mini-hero-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .mini-hero .mini-hero-content .hero-header {
    font-size: 1.5rem;
    font-weight: 500;
    text-align: center;
  }

  .mini-hero .banner-cta {
    flex-direction: row;
    gap: 2rem;
    margin-top: 3rem;
  }

  .mini-hero .banner-cta .btn {
    padding: 0.8rem 2.1rem;
    font-size: 16px;
    font-weight: 500;
    border-radius: 0.3rem;
  }

  .mini-hero .banner-cta .cta-primary {
    border: 1px solid #f1d534;
    background-color: #d4b401eb;
    transition: all 0.5s ease;
  }
  .mini-hero .banner-cta .cta-primary:hover {
    background-color: transparent;
    border: 1px solid #ffffff;
    color: #ffffff;
  }

  .mini-hero .banner-cta .cta-secondary {
    border: 1px solid #fcfcfc;
    transition: all 0.5s ease;
  }

  .mini-hero .banner-cta .cta-secondary:hover {
    background-color: #d4b401eb;
    border: 1px solid #d4b401eb;
    color: #ffffff;
  }

  .newsletter-content form {
    flex-direction: row;
    align-items: center;
    gap: 2rem;
    width: 100%;
    padding: 0 2rem;
    margin-top: 1rem;
  }

  .newsletter-content form input {
    min-width: 70%;
    border: 1px solid #bcbdbf;
  }

  .newsletter-content .btn {
    width: 30%;
    border: 2px solid #f1d534;
    font-size: 16px;
  }
  .newsletter-content .btn:hover {
    border: 2px solid #d4b401;
  }
}

@media (min-width: 992px) {
  .hero-content {
    bottom: 1rem;
    transform: translate(5%, -10%);
  }

  .hero-text h2 {
    font-size: 3rem;
  }

  .hero-text p {
    max-width: 500px;
    font-size: 18px;
  }

  .our-divisions ul {
    padding: 0;
    display: flex !important;
    flex-direction: column;
    row-gap: 1rem;
  }

  .our-divisions ul li {
    list-style: none;
    display: flex;
    align-items: center;
    column-gap: 0.5rem;
  }

  .our-divisions ul li span {
    font-size: 14px;
  }

  .what-we-offer .why-us-content {
    display: flex;
    padding: 0;
  }

  .what-we-offer .why-us-item {
    padding: 2rem;
    border: 1px solid #00000040;
  }

  .what-we-offer h5 {
    text-align: center;
  }
  .what-we-offer p {
    text-align: center;
    font-size: 14px;
  }

  .why-section {
    display: flex;
    padding: 2rem;
    gap: 2rem;
    width: 100%;
  }

  .why-section .why-us-lg {
    background-color: #ebebebb6;
    color: #0b1f3a;
    padding: 2rem;
    border-radius: 1rem;
    width: 100%;
    transition: 0.5s ease;
  }

  .why-section .why-us-lg:hover {
    transform: scale(0.95);
  }

  .why-section h5 {
    margin-bottom: 2rem;
  }

  .why-section ul {
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
  }

  .why-section ul li {
    list-style: none;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .who-for {
    background-color: #0b1f3a;
    color: #f8fafc;
    padding: 2rem;
    border-radius: 1rem;
    width: 100%;
    transition: 0.5s ease;
  }

  .who-for:hover {
    transform: scale(0.95);
  }

  .mini-hero-lg {
    background-color: #0b1f3a;
    color: #f8fafc;
    padding: 2rem 3rem;
  }

  .mini-hero-lg .mini-hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .mini-hero-lg .mini-hero-content h4 {
    text-align: left;
    line-height: 2;
  }

  .mini-hero-lg .mini-hero-content a {
    text-decoration: none;
    padding: 1rem 2rem;
    font-size: 16px;
    font-weight: 500;
    border-radius: 0.3rem;
    background-color: #d4b401eb;
    color: #f8fafc;
    transition: all 0.5s ease;
    box-shadow: 0 0 10px rgba(168, 168, 168, 0.517);
  }

  .mini-hero-lg .mini-hero-content a:hover {
    background-color: #0a8f3d;
    color: #ffffff;
    transform: scale(0.95);
  }

  .newsletter-lg {
    color: #0b1f3a;
    padding: 3rem 2rem;
  }

  .newsletter-lg form {
    display: flex;
    gap: 1rem;
    align-items: center;
  }

  .newsletter-lg form input {
    width: 100%;
    min-width: 330px;
    border: 1px solid #d4b401eb;
    padding: 1rem;
    font-size: 16px;
    color: #000000;
    border-radius: 0.4rem;
    transition: all 0.5s ease;
    outline: none;
  }

  .newsletter-lg form input:focus {
    border-color: #0a8f3d;
  }

  .newsletter-lg form button {
    padding: 1rem 2rem;
    font-weight: 500;
    border-radius: 0.3rem;
    background-color: #d4b401eb;
    color: #f8fafc;
    transition: all 0.5s ease;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.356);
  }
  .newsletter-lg form button:hover {
    background-color: #0a8f3d;
    color: #ffffff;
    transform: scale(0.95);
  }
}
