* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: "Poppins", sans-serif;
}

/* Default (light) mode styles remain as they are */

/* Dark mode styles */
body.dark-mode {
  background-color: #121212;
  color: #ffffff;
}

/* Navbar dark background */
body.dark-mode .navbar {
  background-color: #1e1e1e;
}

/* Links in navbar */
body.dark-mode .navbar a {
  color: #ffffff;
}

/* Adjust any other sections you want darker */
body.dark-mode header {
  background-color: #1e1e1e;
}

/* Example slides darker look */
body.dark-mode .slide1,
body.dark-mode .slide2,
body.dark-mode .slide3 {
  filter: brightness(0.7);
}

/* App button styling */
body.dark-mode .our-app-btn {
  background-color: #333333;
  color: #ffffff;
}

body,
.navbar,
header {
  transition: background-color 0.3s ease, color 0.3s ease;
}

:root {
  --primary-color: #ffffff;
  --secondary-color: #011627;
  --input-color: #01162763;
  --custom-color: rgba(255, 0, 0, 0.7);
}

body {
  background-color: var(--primary-color);
}

.container {
  width: 90%;
  margin-inline: auto;
}

@media screen and (max-width: 1000px) {
  .container {
    width: 100%;
  }
}

/* Header */
header {
  width: 100%;
  min-height: 105vh;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #000;
  color: rgb(185, 19, 19);
  padding-right: 20px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 0;
}
.hero,
.navbar,
.hero-text {
  position: relative;
  z-index: 1;
}

.navbar {
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 50px;
  padding: 10px 20px;
  position: relative;
  z-index: 1000;
  backdrop-filter: blur(-1px);
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
}

.navbar .menu {
  display: flex;
  gap: 10px;
  list-style: none;
}

.navbar .menu > h1,
.navbar .menu > h3 {
  display: block;
  color: white;
  font-size: 16px;
  margin-right: 10px;
}

.navbar .menu li {
  list-style-type: none;
}

.navbar .menu li i {
  color: white;
  margin-right: 5px;
}

.navbar .menu li a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease, background-color 0.3s ease;
  padding: 6px 12px;
  border-radius: 8px;
  display: inline-block;
  cursor: pointer;
  font-size: 14px;
}

.navbar .logo img {
  height: 50px;
}

.menu li a:hover {
  color: rgb(185, 19, 19);
  background-color: rgba(255, 255, 255, 0.2);
}

.menu li:hover i {
  color: rgb(185, 19, 19);
}

.menu li:hover a {
  color: rgb(185, 19, 19);
}

.navbar-tools {
  display: flex;
  align-items: center;
  gap: 8px; /* spacing between dropdown and moon icon */
  margin-left: 10px;
}

.language-select {
  padding: 5px 8px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background-color: transparent;
  color: white;
  font-size: 14px;
  appearance: none;
  cursor: pointer;
}

/* Optional: Style dropdown arrow */
.language-select::-ms-expand {
  display: none;
}
.language-select option {
  color: black;
}

/* Hover effect */
.language-select:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.navbar .our-app-btn {
  padding: 12px 24px 12px 24px;
  background-color: transparent;
  color: white;
  font-weight: bold;
  cursor: pointer;
  border: 1px solid rgba(171, 17, 17, 0.5);
  border-radius: 100px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
  position: relative;
}

.navbar .our-app-btn::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(201, 16, 16, 0.2);
  border-radius: 100px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
  filter: blur(1px);
  -webkit-filter: blur(1px);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}

.navbar .our-app-btn:hover::before {
  background-color: rgba(255, 0, 0, 0.2);
}

.navbar .hamburger {
  display: none;
}

.navbar .hamburger-inner,
.navbar .hamburger-inner::before,
.navbar .hamburger-inner::after {
  background-color: #b81515;
}

.navbar .hamburger.is-active .hamburger-inner,
.navbar .hamburger.is-active .hamburger-inner::before,
.navbar .hamburger.is-active .hamburger-inner::after {
  background-color: #b81515;
}

@media (min-width: 768px) and (max-width: 1024px) {
  header {
    min-height: 80vh;
  }
}

.hero {
  padding: 50px 20px 50px;
  width: 90%;
  text-align: center;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: -1;
}

.hero h1 {
  font-size: 50px;
  line-height: 1.3;
  margin-bottom: 20px;
  font-weight: 600;
  color: rgb(185, 19, 19);
  font-family: "Poppins", sans-serif;
}

.hero p {
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto 30px;
  line-height: 1.8;
  color: white;
  font-family: "Open Sans", sans-serif;
  position: relative;
  z-index: 1;
}

.hero-text {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(600px);
  padding: 30px;
  border-radius: 12px;
  display: inline-block;
  color: white;
  max-width: 800px;
  margin: auto;
}

.hero p .highlight {
  color: rgb(185, 19, 19);
  font-weight: bold;
}

.hero button {
  padding: 12px 24px;
  background-color: transparent;
  color: white;
  font-weight: bold;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 100px;
  position: relative;
  overflow: hidden;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.hero button::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(201, 11, 11, 0.2);
  border-radius: 100px;
  filter: blur(1px);
  z-index: -1;
  transition: background-color 0.3s ease;
}

.hero button:hover::before {
  background-color: rgba(255, 0, 0, 0.2);
}

.hero button:active {
  background-color: rgb(185, 19, 19);
  color: white;
  border-color: rgb(185, 19, 19);
}

@media screen and (max-width: 992px) {
  .navbar .menu {
    gap: 20px;
  }
}

@media screen and (max-width: 768px) {
  .navbar .menu {
    position: absolute;
    top: 0;
    left: -100;
    flex-direction: column;
    width: 250px;
    height: 100vh;
    background-color: white;
    opacity: 0;
    transition: all 0.1s ease-out;
    -webkit-transition: all 0.1s ease-out;
    -moz-transition: all 0.1s ease-out;
    -ms-transition: all 0.1s ease-out;
    -o-transition: all 0.1s ease-out;
  }

  .navbar .menu.menu-active {
    left: 0;
    opacity: 1;
  }

  .navbar .menu li a {
    color: black;
  }

  .navbar .menu > h1 {
    display: block;
    color: black;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    padding-bottom: 10px;
    padding-left: 10px;
  }

  .navbar .menu > h3 {
    display: block;
    color: rgb(201, 12, 12);
    padding-left: 10px;
  }

  .navbar .menu li i {
    display: inline-block;
    color: rgb(185, 19, 19);
    font-size: 24px;
    width: 50px;
    text-align: right;
    margin-right: 10px;
  }

  .navbar .hamburger {
    display: inline-block;
    padding: 0;
  }

  .navbar .our-app- {
    display: flex;
    align-items: center;
    gap: 10px;
  }
}

@media screen and (max-width: 768px) {
  .hero h1 {
    font-size: 32px;
  }
}

.hero p {
  font-size: 14px;
}

.hero button {
  padding: 10px 20px;
}

.hero-btn {
  padding: 12px 30px;
  background-color: #070447;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  text-decoration: none; /* removes underline */
  display: inline-block;
  transition: background-color 0.3s;
}

.hero-btn:hover {
  background-color: #86aeea;
}

@media (min-width: 768px) {
  .hero {
    max-width: 800px;
    margin: 100px auto 0 auto;
  }
}

@keyframes zoomOut {
  from {
    transform: scale(1.1);
  }
  to {
    transform: scale(1);
  }
}

.slideshow-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-size: cover;
  background-position: center;
  transition: backrgound image 1s ease-in-out;
  -webkit-transition: backrgound image 1s ease-in-out;
  -moz-transition: backrgound image 1s ease-in-out;
  -ms-transition: backrgound image 1s ease-in-out;
  -o-transition: backrgound image 1s ease-in-out;
}

.slideshow-container {
  position: absolute;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  z-index: -1;
  overflow: hidden;
}

.slide {
  position: absolute;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: fade 15s infinite, zoomOut 15s infinite;
  -webkit-animation: fade 15s infinite, zoomOut 15s infinite;
  animation-fill-mode: both;
  background-size: cover;
  background-position: center;
  transition: 1s ease-in-out;
}

.slide1 {
  background-image: url("https://i.postimg.cc/5tSgRXVV/bdb1.jpg");
  animation-delay: 0s;
}

.slide2 {
  background-image: url("https://i.postimg.cc/y8Q0GtQL/bdb2.jpg");
  animation-delay: 5s;
}

.slide3 {
  background-image: url("https://i.postimg.cc/W3MFsH8L/bdb3.jpg");
  animation-delay: 10s;
}

@keyframes fade {
  0% {
    opacity: 0;
  }
  8% {
    opacity: 1;
  }
  30% {
    opacity: 1;
  }
  38% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

/* Header */

/* Home */
.home {
  width: 100%;
  min-height: 100vh;
  padding-top: 100px;
  padding-bottom: 50px;
  display: flex;
  align-items: center;
}

.home .container > h1,
.home .container > p {
  text-align: center;
}

.home .container > h1 {
  font-weight: 600;
  margin-bottom: 5px;
}

.home .swiper {
  margin-top: 50px;
  padding-bottom: 50px;
}

.home .swiper .swiper-slide:hover {
  cursor: grab;
}

.home .swiper .swiper-slide:hover:active {
  cursor: grabbing;
}

.home .swiper .swiper-slide img {
  width: 100%;
  height: 200px;
}

.home .swiper .home-desc {
  margin-top: 10px;
}

.home .swiper .home-desc p {
  font-size: 13px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 5px;
}

.home .swiper .home-desc h4 {
  color: rgba(0, 0, 0, 0.8);
}

.home .btn-home {
  text-align: center;
  margin-top: 50px;
}

.home .btn-home button {
  padding: 10px 30px 10px;
  border-radius: 100px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
  border: 1px solid rgba(0, 0, 0, 0.5);
  background-color: rgb(82, 113, 214);
  cursor: pointer;
}

.home .btn-home button:hover {
  background-color: rgb(53, 53, 168);
}
/* Home */

/* DARK MODE - HOME */
body.dark-mode .home {
  background-color: #121212;
  color: #f0f0f0;
}

body.dark-mode .home .container > h1 {
  color: #ffffff;
}

body.dark-mode .home .container > p {
  color: #cccccc;
}

body.dark-mode .home .swiper .home-desc p {
  color: rgba(255, 255, 255, 0.6);
}

body.dark-mode .home .swiper .home-desc h4 {
  color: rgba(255, 255, 255, 0.8);
}

body.dark-mode .home .btn-home button {
  background-color: rgb(100, 130, 240);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

body.dark-mode .home .btn-home button:hover {
  background-color: rgb(70, 90, 200);
}

.home,
.home .container > h1,
.home .container > p,
.home .swiper .home-desc p,
.home .swiper .home-desc h4,
.home .btn-home button {
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* About Us */
.about {
  width: 100%;
  min-height: 80vh;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.about-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  display: flex;
  align-items: center;
}

.about-box .box img {
  width: 100%;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}
.about-box .box:nth-child(1) {
  position: relative;
}

.about-box .box:nth-child(1)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgb(82, 113, 214);
  width: 100%;
  height: 100%;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  z-index: -1;
  transform: translate(20px, 20px);
  -webkit-transform: translate(20px, 20px);
  -moz-transform: translate(20px, 20px);
  -ms-transform: translate(20px, 20px);
  -o-transform: translate(20px, 20px);
  opacity: 100%;
}

.about-box .box h1 {
  font-size: 50px;
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 600;
}

.about-box .box p {
  margin-bottom: 10px;
  line-height: 2;
}

@media screen and (max-width: 1200px) {
  .about-box h1 {
    font-size: 40px;
  }

  .about-box .box p {
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  .about-box {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 475px) {
  .about-box .box h1 {
    font-size: 30px;
    line-height: 1.5;
  }

  .about-box .box p {
    font-size: 12px;
  }
}

.about .info {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  padding-top: 150px;
  text-align: center;
  margin-bottom: 150px;
}

.about .info h2 span {
  color: rgb(218, 147, 32);
  font-size: 40px;
}
/* About Us */
section.projects {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.projects h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #000000;
}

.project-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.project-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.project-card:hover {
  transform: translateY(-5px);
}

.project-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.project-card-content {
  padding: 20px;
}

.project-card h3 {
  color: #000000;
  font-size: 1.2rem;
}

.project-description {
  display: none;
  margin-top: 15px;
  color: #333;
  font-size: 0.95rem;
  text-align: left;
}

.project-card .btn {
  margin-top: 15px;
  padding: 8px 14px;
  background-color: #000000;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.project-card .btn:hover {
  background-color: #080808;
}

@media (max-width: 600px) {
  .projects h1 {
    font-size: 1.8rem;
  }
}

/* Project */
.project {
  width: 100%;
  min-height: 100vh;
  padding-top: 70px;
  padding-bottom: 70px;
  margin-bottom: 1rem !important; /* kecilkan jarak bawah */
}

.project .container > h1,
.project .container > p {
  text-align: center;
  padding-bottom: 0 !important;
}

.project-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.project-box .box {
  background-color: white;
  padding: 20px;
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  padding: 20px;
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.project-box .box:hover {
  background-color: #b81515;
}

.project-box .box:hover > * {
  color: white;
}

.service-box .box i {
  margin-bottom: 30px;
  font-size: 25px;
}

.project-box .box h3 {
  margin-bottom: 10px;
}

.project-box .box p {
  line-height: 2;
}

@media screen and (max-width: 992px) {
  .project-box {
    gap: 30px;
  }
}

@media screen and (max-width: 768px) {
  .project {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .project-box {
    grid-template-columns: 1fr;
  }
}

.video-section {
  margin-top: 0 !important;
  padding-top: 1rem !important; /* kurangkan ruang atas */
}

/* Project */

/* ==========================
   DARK MODE STYLES
   ========================== */
body.dark-mode section.projects {
  background-color: #121212;
  color: #f0f0f0;
}

body.dark-mode .projects h1 {
  color: #ffffff;
}

body.dark-mode .project-card {
  background: #1e1e1e;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

body.dark-mode .project-card h3 {
  color: #ffffff;
}

body.dark-mode .project-description {
  color: #cccccc;
}

body.dark-mode .project-card .btn {
  background-color: #ffffff;
  color: #121212;
}

body.dark-mode .project-card .btn:hover {
  background-color: #dddddd;
}

/* Project Section Styles */

body.dark-mode .project {
  background-color: #121212;
  color: #f0f0f0;
}

body.dark-mode .project .container > h1 {
  color: #ffffff;
}

body.dark-mode .project .container > p {
  color: #cccccc;
}

body.dark-mode .project-box .box {
  background-color: #1e1e1e;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.6);
}

body.dark-mode .project-box .box h3 {
  color: #ffffff;
}

body.dark-mode .project-box .box p {
  color: #cccccc;
}

body.dark-mode .project-box .box:hover {
  background-color: #b81515;
}

body.dark-mode .project-box .box:hover > * {
  color: #ffffff;
}

.projects,
.project,
.project-card,
.project-box .box {
  transition: background-color 0.3s ease, color 0.3s ease;
}





/* Events */
section {
  width: 80%;
  margin: 80px auto;
}

.title {
  text-align: center;
  font-size: 4vmin;
  color: black;
}
.row {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}
.row .col {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.row .col img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

.row .col img {
  width: 100%;
  max-height: 250px;
  object-fit: cover;
}

.events .row {
  margin-top: 50px;
}
h4 {
  font-size: 3vmin;
  color: #484872;
  margin: 20px auto;
}
p {
  color: #7c7c7c;
  padding: 0px 40px;
}
.events .ctn {
  margin-top: 30px;
}
/* Events */
/* Contact Us*/
.contact-in {
  width: 80%;
  height: auto;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  padding: 10px;
  border-radius: 10px;
  background: #b4caead4;
  box-shadow: 0px 0px 10px 0px #666;
}

.contact-map {
  width: 100%;
  height: auto;
  flex: 50%;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
}

.contact-form {
  width: 100%;
  height: auto;
  flex: 50%;
  padding: 30px;
  text-align: center;
}

.contact-form h1 {
  margin-bottom: 10px;
}

.contact-form-txt {
  width: 100%;
  height: 40px;
  color: #000;
  border: 1px solid rgb(13, 13, 88);
  border-radius: 50px;
  outline: none;
  margin-bottom: 20px;
  padding: 15px;
}
.contact-form-txt::placeholder {
  color: #aaa;
}

.contact-form-textarea {
  width: 100%;
  height: 130px;
  color: #000;
  border: 1px solid rgb(20, 20, 99);
  border-radius: 15px;
  outline: none;
  margin-bottom: 20px;
  padding: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
}
.contact-form-txt::placeholder {
  color: #aaa;
}
.contact-form-btn {
  width: 100%;
  border: none;
  outline: none;
  border-radius: 50px;
  background: rgb(9, 9, 79);
  color: #fff;
  text-transform: uppercase;
  padding: 10px 0;
  cursor: pointer;
  font-size: 18px;
}
/* Contact Us*/

/* Recover App */
.recover {
  width: 100%;
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 50px;
}

.recover {
  margin-bottom: 5vh;
}

.recover-box {
  width: 100%;
  height: 40vh;
  background-image: url("../../assets/images/bdbapp.jpg");
  background-repeat: no-repeat;
  background-position: -400px -400px;
  position: relative;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.recover-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7));
  background-size: 200% 200%;
  animation: gradientMove 6s ease infinite;
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.recover-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(134, 19, 19);
  opacity: 100%;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  z-index: -1;
  transform: translate(20px, 20px);
  -webkit-transform: translate(20px, 20px);
  -moz-transform: translate(20px, 20px);
  -ms-transform: translate(20px, 20px);
  -o-transform: translate(20px, 20px);
}

.recover-box .box {
  position: absolute;
  z-index: 1;
  color: white;
  text-align: center;
  padding-inline: 20px;
}

.recover-box .box h1 {
  margin-bottom: 10px;
  font-size: 32px;
  font-weight: bold;
  color: #fff;
}

.recover-box .box p {
  font-size: 16px;
  color: #f0f0f0;
  margin-bottom: 20px;
  line-height: 1.4;
  max-width: 500px;
  margin-inline: auto;
}

.recover-box .box div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.recover-box .box div img {
  width: 50px;
  cursor: pointer;
  transform: scale(1.1);
  transition: transform 0.3s ease;
}

@media screen and (max-width: 475px) {
  .recover-box .box h1 {
    font-size: 24px;
  }

  .recover-box .box p {
    font-size: 12px;
  }
}

@keyframes floatText {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.recover-box .box {
  animation: floatText 3s ease-in-out infinite;
}
/* Recover App */

/* Footer */
footer {
  background: #f8f9fa;
  color: #333;
  padding: 60px 20px 0;
  padding-bottom: 1rem;
  font-family: "Poppins", sans-serif;
  position: relative;
}

.footer-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  text-align: left;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-box .box {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
  align-items: flex-start;
}

* {
  box-sizing: border-box;
}

.footer-box .box h2,
.footer-box .box h3 {
  color: #b81515;
  font-size: 20px;
  margin-bottom: 10px;
}

.footer-box .box p,
.footer-box .box a {
  font-size: 14px;
  line-height: 1.8;
  color: #444;
  text-decoration: none;
  transition: 0.3s;
}

.footer-box .box a:hover {
  color: #b81515;
}

.footer-icon {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.footer-icon a i {
  font-size: 20px;
  color: #555;
  transition: transform 0.3s ease, color 0.3s ease;
}

.footer-icon a:hover i {
  color: #b81515;
  transform: scale(1.3);
}

.footer p {
  margin-top: 0.5rem; /* kecilkan dari default 2rem */
  margin-bottom: 0.5rem;
}


.svg {
  display: block;
  margin-top: 100px;
  margin-bottom: -80px;
  background: transparent;
}
/* Responsive */
@media screen and (max-width: 768px) {
  .footer-box {
    text-align: left;
  }

  .footer-box .box {
    align-items: flex-start;
  }
}
/* Footer */

/* Scroll Up */
.scroll-up {
  width: 50px;
  height: 50px;
  background-color: #b81515;
  color: white;
  border-radius: 100%;
  display: grid;
  place-items: center;
  position: fixed;
  bottom: 40px;
  right: 40px;
  opacity: 0;
  transition: all 0.5s ease;
}

.scroll-up.scroll-active {
  opacity: 1;
}
/* Scroll Up */

/* Copyright */
.copyright {
  text-align: center;
  padding-top: 10px;
  padding-bottom: 20px;
}

.copyright p {
  line-height: 2;
  font-size: 14px;
  color: black;
  margin: 0;
}

.copyright p span {
  font-weight: bold;
}
/* Copyright */
