/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');

/* Global Styles */
html,
body {
  font-family: 'Poppins', sans-serif;
}

/* Placeholder Image */
.bd-placeholder-img {
  font-size: 1.125rem;
  text-anchor: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

/* Media Query for Large Devices */
@media (min-width: 768px) {
  .bd-placeholder-img-lg {
    font-size: 3.5rem;
  }
}

/* Divider Styles */
.b-example-divider {
  width: 100%;
  height: 3rem;
  background-color: rgba(0, 0, 0, .1);
  border: solid rgba(0, 0, 0, .15);
  border-width: 1px 0;
  box-shadow: inset 0 .5em 1.5em rgba(0, 0, 0, .1), inset 0 .125em .5em rgba(0, 0, 0, .15);
}

/* Vertical Divider */
.b-example-vr {
  flex-shrink: 0;
  width: 1.5rem;
  height: 100vh;
}

/* Icon Styles */
.bi {
  vertical-align: -.125em;
  fill: currentColor;
}

/* Navigation Scroller */
.nav-scroller {
  position: relative;
  z-index: 2;
  height: 2.75rem;
  overflow-y: hidden;
}

.nav-scroller .nav {
  display: flex;
  flex-wrap: nowrap;
  padding-bottom: 1rem;
  margin-top: -1px;
  overflow-x: auto;
  text-align: center;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}

/* Button Styles */
.btn-bd-primary {
  --bd-blue-bg: #0d6efd;
  --bd-blue-rgb: 13, 110, 253;
  --bs-btn-font-weight: 600;
  --bs-btn-color: var(--bs-white);
  --bs-btn-bg: var(--bd-blue-bg);
  --bs-btn-border-color: var(--bd-blue-bg);
  --bs-btn-hover-color: var(--bs-white);
  --bs-btn-hover-bg: #0a58ca;
  --bs-btn-hover-border-color: #0a58ca;
  --bs-btn-focus-shadow-rgb: var(--bd-blue-rgb);
  --bs-btn-active-color: var(--bs-btn-hover-color);
  --bs-btn-active-bg: #0a58ca;
  --bs-btn-active-border-color: #0a58ca;
}

.btn-bd-primary::after {
  display: none !important;
}

/* Mode Toggle */
.bd-mode-toggle {
  z-index: 1500;
}

.bd-mode-toggle .dropdown-menu .active .bi {
  display: block !important;
}

/* Hero Section Styles */
#heroSection {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100%;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  z-index: -999;
}

.hero-img {
  height: 100%;
  width: 100%;
}

/* Text Color for Hero Section on Large Devices */
@media (min-width: 992px) {
  .hero-text {
    color: white;
  }

  .w-lg-50 {
    width: 50% !important;
  }
}

/* Responsive Layout for Items */
@media(max-width: 992px) {
  .order-items-1 {
    order: 2;
  }

  .order-items-2 {
    order: 1;
  }

  .hero-img {
    height: 300px;
    width: 280px;
  }
}

/* Custom Carousel Icon */
.custom-carousel-icon {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  font-size: 28px;
}

/* Pointer Cursor */
.pointer {
  cursor: pointer;
}

/* Custom Card Image */
.custom-card-img-top {
  height: 300px;
  width: 100%;
}

@media (max-width: 992px) and (min-width: 768px) {
  .custom-carousel-card-img-top {
    height: 300px;
    width: 100%;
  }
}

@media (max-width: 992px) {
  .custom-card-img {
    height: 300px;
    width: 100%;
  }

  .custom-card-img-top {
    height: 400px;
    width: 100%;
  }
}