/* General Styling */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Geomanist", sans-serif;
}

body {
  background-color: white;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.bg-white {
  background-color: white;
  color: #ed1c24 !important;
}

/* Table */
.risk-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  background-color: #fff;
}

.risk-table thead th {
  background: linear-gradient(135deg, #ed1c24, #9b0b10);
  color: #fff;
  font-weight: 600;
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 1rem 1.2rem;
}

.risk-table tbody td {
  vertical-align: top;
  padding: 1.2rem 1.2rem;
  border-top: 1px solid #eee;
  color: #333;
  font-size: 1rem;
  line-height: 1.6;
}

.risk-table tbody tr:first-child td {
  border-top: none;
}

.risk-table ul {
  padding-left: 1.2rem;
  margin-bottom: 0;
}

.risk-table ul li {
  margin-bottom: 0.5rem;
  position: relative;
}

.risk-table ul li::marker {
  color: #ed1c24;
}

.risk-table tbody tr:hover {
  background-color: rgba(237, 28, 36, 0.05);
  transition: background 0.3s ease;
}

/* Responsive: stack on small screens */
@media (max-width: 768px) {
  .risk-table thead {
    display: none;
  }

  .risk-table tr {
    display: block;
    margin-bottom: 1.5rem;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 1rem;
  }

  .risk-table td {
    display: block;
    border: none;
    padding: 0.5rem 0;
  }

  .risk-table td:first-child {
    font-weight: 600;
    color: #ed1c24;
    margin-bottom: 0.5rem;
  }

  .risk-table ul {
    padding-left: 1.1rem;
  }
}

/* Hero Section */
:root {
  --btn-size: 48px;
}

.hero-section {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background: #000;
  margin-top: -30px;
}

/* Default fallback background image */
.hero-section {
  background-image: url("https://on-c2-cmshub-public.s3.ap-southeast-3.amazonaws.com/mast_head_img_fallback_desktop_6c20803757.jpg");
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
}

/* Video styling */
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-position: center;
  z-index: 1;
  background: #000;
}

/* Desktop vs Mobile */
.desktop-video {
  display: block;
}

.mobile-video {
  display: none;
}

@media (max-width: 900px) {
  .desktop-video {
    display: none;
  }

  .mobile-video {
    display: block;
  }

  .hero-section {
    position: relative;
    height: 75vh;
    width: 100%;
    overflow: hidden;
    background: #000;
  }

  /* Mobile fallback */
  .hero-section {
    background-image: url("https://on-c2-cmshub-public.s3.ap-southeast-3.amazonaws.com/mast_head_img_fallback_mobile_bceb22f418.jpg");
  }
}

.hero-content {
  position: relative;
  z-index: 2;
}

/* Sound button styling */
.sound-btn {
  position: absolute;
  bottom: 30px;
  right: 25px;
  z-index: 3;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: var(--btn-size);
  height: var(--btn-size);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease;
}

.sound-btn:hover {
  background: rgba(255, 255, 255, 0.15);
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: #fff;
  z-index: 3;
  font-family: "Fira Sans", sans-serif;
  animation: fadeIn 1.5s ease-in;
}

.scroll-indicator p {
  font-size: 14px;
  margin-bottom: 6px;
  opacity: 0.8;
  letter-spacing: 1px;
}

.scroll-indicator i {
  font-size: 18px;
  animation: moveDown 1.6s ease-in-out infinite;
}

@keyframes moveDown {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(8px);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Main Section */
.main-section {
  background-color: #ed1c24;
  color: #000;
  padding: 80px 0 0 0;
}

.btn-apply-now-main {
  padding: 7px 15px;
  border-radius: 5px;
  border: none;
  background-color: white;
  color: red;
  text-decoration: none;
  font-size: 20px;
  font-weight: bold;
}

.main-text h1,
.main-text h2,
.btn-apply-now-main,
.main-image {
  transform: translateY(100%);
  opacity: 0;
}

.reveal-active .main-text h1 {
  animation: reveal 1s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

.reveal-active .main-text h2 {
  animation: reveal 1s cubic-bezier(0.77, 0, 0.175, 1) forwards;
  animation-delay: 0.3s;
}

.reveal-active .btn-apply-now-main {
  animation: reveal 1s cubic-bezier(0.77, 0, 0.175, 1) forwards;
  animation-delay: 0.6s;
}

.reveal-active .main-image {
  animation: reveal 1s cubic-bezier(0.77, 0, 0.175, 1) forwards;
  animation-delay: 0.9s;
}

.main-image img {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  height: auto;
}

.main-image img {
  transition: transform 0.3s linear;
  will-change: transform;
}

/* Reveal keyframes */
@keyframes reveal {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ========== Intro Section ========== */
.intro-section {
  position: relative;
  min-height: 100vh;
  background-image: url("https://on-c2-cmshub-public.s3.ap-southeast-3.amazonaws.com/intro_section_bg_desktop_7ebfadd0b3.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
  overflow: hidden;
}

.btn-apply-now {
  padding: 7px 15px;
  border-radius: 5px;
  border: none;
  background-color: red;
  color: white;
  text-decoration: none;
  font-size: 20px;
}

.intro-section.scrolled::before {
  transform: translateY(0);
}

/* Sticky text container */
.intro-text {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 2;
  padding: 40px 50px;
  background: transparent;
}

/* ========== Reveal Line Animation ========== */
.reveal-line {
  opacity: 0;
  transform: translateY(40px);
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeOutUp {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(-40px);
  }
}

.reveal-line.animate {
  animation: fadeInDown 0.8s ease-out forwards;
}

/* ========== Text Styles ========== */
.intro-text h2 {
  font-weight: 600;
  font-size: 32px;
  margin-bottom: 15px;
}

.intro-text h3 {
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 8px;
}

.intro-text p {
  color: #ffffff;
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 0;
}

.headline-line {
  width: 80px;
  height: 3px;
  background-color: #e60000;
  margin-bottom: 15px;
}

/* ========== Responsive ========== */
@media (max-width: 768px) {
  .intro-section {
    padding: 60px 0;
  }

  .intro-text {
    padding: 25px 20px;
  }

  .intro-text h2 {
    font-size: 22px;
  }

  .intro-text h3 {
    font-size: 18px;
  }

  .intro-text p {
    font-size: 14px;
  }

  .reveal-line {
    transform: translateY(20px);
  }
}

@media screen and (max-width: 468px) {
  .intro-section {
    background-image: url("https://on-c2-cmshub-public.s3.ap-southeast-3.amazonaws.com/intro_section_bg_mobile_06ad5cc624.jpg");
  }
}

/* Category Section */
.category-section {
  background: #f2f2f2;
  color: #000;
}

/* Cards */
.category-card.apple-style {
  border-radius: 24px;
  padding: 30px 20px;
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transform: scale(1);
}

.category-card.apple-style:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Content */
.category-content img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.category-card:hover .category-content img {
  transform: scale(1.05);
}

.category-icon {
  margin-top: 20px;
}

.category-content h4 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
}

.category-content p {
  color: #555;
  font-size: 15px;
  margin-bottom: 1rem;
}

.category-card.bg-dark p {
  color: #ccc;
}

.learn-more {
  font-weight: 500;
  color: #111;
  text-decoration: none;
  transition: color 0.2s ease;
}

.learn-more:hover {
  color: #e60012;
}

.category-card-grid {
  max-width: 900px;
  margin: 0 auto !important;
}

/* Modern Headline */
.modern-headline h3 {
  font-size: 30px;
  font-weight: 400;
  line-height: 1.2;
  color: #111;
  text-transform: none;
  letter-spacing: 0.5px;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.modern-headline strong {
  color: #e60012;
  font-weight: 700;
}

.modern-headline span {
  color: #333;
}

.headline-line {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #e60012, #ff4c4c);
  border-radius: 10px;
  margin: 0 auto;
}

/* Responsiveness */
@media (max-width: 767px) {
  .category-card.apple-style {
    padding: 20px;
  }

  .category-content img {
    width: 120px;
    height: 120px;
  }

  .card-card-1 {
    margin-bottom: 20px;
  }
}

/* Video Section */
.promo-video-section {
  background-image: url("https://on-c2-cmshub-public.s3.ap-southeast-3.amazonaws.com/video_section_bg_dekstop_0533bf21c1.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.video-wrapper {
  max-width: 800px;
  width: 90%;
  z-index: 2;
}

.video-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.video-player {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.video-caption h5 {
  font-size: 24px;
  color: rgb(54, 54, 54);
}

.video-caption p {
  font-size: 20px;
  color: rgb(54, 54, 54);
}

/* End Video */

#promo-section .btn {
  padding: 0 !important;
}

.btn-promo-lain {
  padding: 5px 10px;
  color: white;
  background-color: red;
  border-radius: 7px;
  border: none;
  margin: 0 !important;
}

/* Walking Text Animation */
.moving-text {
  font-size: 2rem;
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
  overflow: hidden;
}

.scroll-container {
  display: flex;
  width: 200%;
  animation: scrollInfinite 20s linear infinite;
}

.scroll-text {
  flex: 0 0 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 2px;
}

.scroll-text span {
  color: rgb(84, 84, 84);
  font-weight: bold;
  margin-right: 32px;
}

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

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

@media screen and (max-width: 468px) {
  .promo-video-section {
    background-image: url("https://on-c2-cmshub-public.s3.ap-southeast-3.amazonaws.com/video_section_bg_mobile_80f949514d.jpg");
  }
}

/* Step Section */
.step-item {
  position: relative;
  padding-left: 50px;
  margin-bottom: 20px;
  font-weight: 500;
  color: #bec3d0;
}

.step-item:last-child {
  margin-bottom: 0;
}

.step-item.active {
  color: #000;
}

.step-bullet {
  position: absolute;
  left: 0;
  top: 0;
  width: 30px;
  height: 30px;
  background-color: #bec3d0;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  transition: background 0.3s;
}

.step-item.active .step-bullet {
  background-image: linear-gradient(to right, #ff4a4a 5%, #e60000);
  background-color: transparent;
}

.step-list .step-item {
  color: #ccc;
  font-weight: bold;
  margin-bottom: 20px;
  position: relative;
  font-size: 18px;
  padding-left: 50px;
}

.step-list .step-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #ccc;
}

.step-list .step-item.active {
  color: #000;
}

.step-list .step-item.active::before {
  background: #e60000;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  display: flex !important;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  max-width: 250px;
  max-height: 400px;
  display: block;
  border-radius: 10px;
}

.swiper-container-wrapper {
  position: relative;
}

.custom-prev,
.custom-next {
  background-image: linear-gradient(to right, #ff4a4a 5%, #e60000);
  border-radius: 50%;
  color: white;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.swiper-button-next,
.swiper-button-prev {
  width: 30px !important;
  height: 30px !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 14px !important;
  color: white !important;
}

.bg-step-grey {
  background-color: #eaecf2;
  padding: 30px;
  border-radius: 15px 0 0 15px;
}

.bg-step-light-grey {
  background-color: #f3f3f3;
  padding: 30px;
  border-radius: 0 15px 15px 0;
}

.step-item {
  cursor: pointer;
  transition: all 0.3s ease;
}

.step-item:hover {
  color: #e60012;
  transform: translateX(5px);
}

.step-item.active {
  color: #e60012;
  font-weight: 600;
}

.step-bullet {
  background: #ccc;
  color: #fff;
  font-weight: bold;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 10px;
  transition: background 0.3s ease;
}

.step-item.active .step-bullet {
  background: #d43f4c;
}

@media screen and (max-width: 768px) {
  .bg-step-grey {
    border-radius: 15px 15px 0 0;
  }

  .bg-step-light-grey {
    border-radius: 0 0 15px 15px;
  }

  .step-list .step-item {
    margin-bottom: 15px;
  }
}

/* Step 2 Section */
.step-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90%;
  max-width: 1200px;
  gap: 40px;
}

.step-left,
.step-right {
  flex: 1;
  position: relative;
}

.step-images {
  position: relative;
  width: 100%;
  height: 400px;
}

.step-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transform: scale(0.95);
}

.step-texts {
  position: relative;
  min-height: 180px;
  display: flex;
  align-items: center;
}

.step-text {
  position: absolute;
  opacity: 0;
  transform: translateY(20px);
  font-size: 30px;
}

.step-bullet2 {
  background: #dc3545;
  color: white;
  border-radius: 50%;
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  font-weight: bold;
}

/* ✅ Hide mobile layout by default */
.step-mobile {
  display: none;
}

/* Breadcrumbs Header in Step Section */
.step-header {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  width: 100%;
  z-index: 10;
}

/* ---------- 📱 MOBILE VERSION ---------- */
@media (max-width: 768px) {
  /* Make parent block layout (not flex-centered) */
  .step-section {
    display: block;
    padding: 60px 0 40px;
    min-height: auto;
  }

  /* Hide desktop animation version */
  .step-inner {
    display: none;
  }

  /* Show static version */
  .step-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding: 0 20px;
  }

  /* ✅ Each step item stacked in ONE column */
  #step-2 .step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    margin-bottom: 30px;
    background: #ffffff;
    border-radius: 16px;
    padding: 25px 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  }

  .step-item img {
    width: 80%;
    max-width: 300px;
    height: auto;
    margin-bottom: 15px;
    object-fit: contain;
  }

  .step-item p {
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    margin: 0;
  }

  .step-bullet2 {
    width: 32px;
    height: 32px;
    font-size: 16px;
    margin-right: 6px;
  }

  /* ✅ Fix heading placement */
  .step-header {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    text-align: center;
    width: 100%;
    margin-bottom: 30px;
    padding: 0 20px;
  }

  .step-header h2 {
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 12px;
  }

  .step-header span.badge {
    font-size: 14px;
    padding: 6px 10px;
  }
}

/* Extra small screens */
@media (max-width: 400px) {
  .step-mobile {
    padding: 0 10px;
  }

  #step-2 .step-item {
    margin-bottom: 25px;
    padding: 15px;
  }

  .step-item p {
    font-size: 14px;
  }
}

/* FAQ Section */
.faq-section {
  background-color: #171717;
  color: #fff;
}

/* Accordion base */
.accordion-item {
  background: #142b3b;
  border: none;
  border-bottom: 1px solid #223b50;
}

.accordion-button {
  background: transparent;
  color: #f70000;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border: none;
  box-shadow: none;
  transition: background 0.2s ease;
}

.accordion-button:not(.collapsed) {
  background: #434a52;
  color: #f7f7f7;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-body {
  background: #1e2a38;
  color: #bcd0e0;
  padding: 1rem 1.5rem;
  line-height: 1.6;
  font-size: 15px;
}

/* Step label */
.step-label {
  display: inline-block;
  color: #e60012;
  font-weight: 700;
  margin-right: 10px;
  font-size: 13px;
  letter-spacing: 0.5px;
}

/* Arrow icon color */
.accordion-button::after {
  filter: invert(1);
  opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
  .accordion-button {
    font-size: 14px;
  }

  .accordion-body {
    font-size: 14px;
  }
}

.digital-security {
  position: relative;
  background-image: url("https://on-c2-cmshub-public.s3.ap-southeast-3.amazonaws.com/digisecure_bg_desktop_d8c1c74ce6.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}

.digital-security::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.15);
  z-index: 1;
}

.digital-security .underline {
  width: 80px;
  height: 3px;
  background: #e60012;
  border-radius: 3px;
}

.security-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  padding: 20px;
  transition: all 0.3s ease;
  z-index: 2;
}

.security-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.security-card img {
  width: 125px;
  height: 125px;
  flex-shrink: 0;
  border-radius: 10px;
}

@media (max-width: 767px) {
  .security-card {
    flex-direction: column;
    text-align: center;
  }

  .security-card img {
    margin-bottom: 12px;
  }
}

/* Promo Section */
.promo-section {
  background: #eeeeee;
}

.promo-section h2 {
  font-size: 2rem;
  letter-spacing: 1px;
}

.promo-underline {
  display: block;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #ff2e2e, #ff7f50);
  margin: 8px auto 0;
  border-radius: 2px;
}

.promo-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(5px);
}

.promo-card:hover {
  border-color: #ff2e2e;
  transform: translateY(-5px);
}

.promo-card img {
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
}

.promo-card .btn {
  border-radius: 30px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.promo-card .btn:hover {
  background: #ff2e2e;
  border-color: #ff2e2e;
}

/* Start Back to Top */
#back-to-top {
  position: fixed;
  bottom: 100px;
  right: 20px;
  background-color: #d32f2f;
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
  z-index: 1000;
}

#back-to-top:hover {
  background-color: #b71c1c;
  transform: scale(1.1);
}

#back-to-top i {
  font-size: 20px;
}

@media screen and (max-width: 750px) {
  #back-to-top {
    width: 40px;
    height: 40px;
  }
}

/* End Back to Top */

/* Start Site Footer Section */
.site-footer-section {
  padding: 20px;
  background-color: #d32f2f;
  margin-bottom: 80px;
}

.site-footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1400px;
  margin: 0 auto;
  align-items: center;
}

.site-footer-content p {
  font-size: 14px;
  color: white;
  padding: 0 !important;
  margin: 0 !important;
}

@media screen and (max-width: 750px) {
  .video-section {
    padding: 70px 20px;
    width: 100%;
    height: auto;
  }

  .site-footer-grid {
    grid-template-columns: 1fr;
  }

  .site-footer-content {
    text-align: center;
  }
}

/* End Site Footer Section */

/* Start Guidebook Section */
#guidebook-section {
  padding: 50px 20px;
  background-color: #f8f9fa;
}

.guidebook-container {
  background-color: #eeeeee;
  padding: 20px;
  border-radius: 15px;
  max-width: 800px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  margin: auto;
}

#guidebook-section h5 {
  margin-bottom: 20px;
}

#guidebook-section .btn {
  padding: 0 !important;
}

.btn-guidebook {
  padding: 5px 10px;
  color: white;
  background-color: red;
  border-radius: 7px;
  border: none;
  margin: 0 !important;
}

@media screen and (max-width: 468px) {
  #guidebook-section .btn {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #guidebook-section h4 {
    text-align: center;
  }
}

/* End Guidebook Section */

/* Start Floating Footer */
#floating-footer {
  z-index: 999;
}

.text-sm-fix {
  font-size: 16px;
}

#floating-footer p {
  color: black;
}

#floating-footer.opacity-0 {
  opacity: 0;
}

#floating-footer.opacity-100 {
  opacity: 1;
  transform: translateY(0);
}

.translate-off {
  transform: translateY(100%);
}

@media screen and (max-width: 468px) {
  .text-sm-fix {
    font-size: 12px;
  }
}

/* End Floating Footer */

/* Start Entry Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.scroll-animation,
.scroll-animation-left,
.scroll-animation-right,
.scroll-animation-down,
.scroll-animation-up {
  opacity: 0;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-animation {
  transform: translateY(0);
}

.scroll-animation-left {
  transform: translateX(-20px);
}

.scroll-animation-right {
  transform: translateX(20px);
}

.scroll-animation-down {
  transform: translateY(-20px);
}

.scroll-animation-up {
  transform: translateY(20px);
}

.fade-in {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.fade-in-left {
  opacity: 1 !important;
  transform: translateX(0) !important;
}

.fade-in-right {
  opacity: 1 !important;
  transform: translateX(0) !important;
}

.fade-in-down {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.fade-in-up {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.delay-150 {
  transition-delay: 0.15s;
}

.delay-300 {
  transition-delay: 0.3s;
}

/* End Entry Animation */

/* Floating Footer */
#floating-footer {
  z-index: 999;
  transform: translateY(100%);
  transition: all 0.5s ease-in-out;
}

.text-sm-fix {
  font-size: 16px;
}

@media screen and (max-width: 468px) {
  .text-sm-fix {
    font-size: 12px;
  }
}
