/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}
/*** Spinner End ***/

.back-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  display: flex;
  width: 45px;
  height: 45px;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
  z-index: 99;
}

/*** Button Start ***/
.btn {
  font-weight: 600;
  transition: 0.5s;
}

.btn-square {
  width: 32px;
  height: 32px;
}

.btn-sm-square {
  width: 34px;
  height: 34px;
}

.btn-md-square {
  width: 44px;
  height: 44px;
}

.btn-lg-square {
  width: 56px;
  height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
  border-radius: 50%;
}

.btn.btn-primary {
  background: var(--bs-primary) !important;
  color: var(--bs-white) !important;
  font-weight: 400;
  transition: 0.5s;
}

.btn.btn-primary:hover {
  background: var(--bs-white) !important;
  color: var(--bs-primary) !important;
}

.btn.btn-light {
  background: var(--bs-light) !important;
  color: var(--bs-primary) !important;
  font-weight: 400;
  transition: 0.5s;
}

.btn.btn-light:hover {
  background: var(--bs-primary) !important;
  color: var(--bs-light) !important;
}

.RotateMoveLeft {
  position: relative;
  animation: RotateMoveLeft 10s linear infinite;
}

.RotateMoveRight {
  position: relative;
  animation: RotateMoveLeft 10s linear infinite;
}

@keyframes RotateMoveLeft {
  0% {
    left: 0px;
  }
  50% {
    left: 40px;
  }
  100% {
    left: 0px;
  }
}

@keyframes RotateMoveRight {
  0% {
    right: 0px;
  }
  50% {
    right: 40px;
  }
  100% {
    right: 0px;
  }
}

/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
  margin-right: 25px;
  padding: 35px 0;
  color: var(--bs-dark) !important;
  font-size: 16px;
  font-weight: 400;
  outline: none;
  transition: 0.5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
  padding: 20px 0;
  color: var(--dark) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: #e05800 !important;
}

.navbar-light .navbar-brand img {
  max-height: 50px;
  transition: 0.5s;
}

.sticky-top.navbar-light .navbar-brand img {
  max-height: 45px;
}

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  vertical-align: middle;
  margin-left: 8px;
}

@media (min-width: 1200px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    visibility: hidden;
    top: 100%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
    border: 0;
    border-radius: 10px;
    transition: 0.5s;
    opacity: 0;
  }
}

.dropdown .dropdown-menu a:hover {
  background: #e05800;
  color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
  transform: rotateX(0deg);
  visibility: visible;
  background: var(--bs-light) !important;
  transition: 0.5s;
  opacity: 1;
}

.collapse.navbar-collapse {
  transition: 0.5s;
}

@media (max-width: 992px) {
  nav.bg-transparent {
    position: absolute;
    width: 100%;
    background: transparent !important;
  }

  .navbar.navbar-expand-lg button span {
    position: relative;
    z-index: 999;
  }

  .navbar {
    position: relative !important;
    background: var(--bs-light);
    z-index: 999;
  }

  .sticky-top.navbar-light {
    position: sticky !important;
    background: var(--bs-white) !important;
    padding: 0 20px 20px 20px !important;
  }

  .sticky-top.navbar-light {
    background: transparent;
  }

  nav.navbar {
    padding: 0 30px 30px 0;
  }

  .navbar.navbar-expand-lg .navbar-toggler {
    padding: 10px 20px;
    border: 1px solid var(--bs-primary);
    color: var(--bs-primary);
  }

  .navbar-light .navbar-collapse {
    margin-top: 15px;
    border-top: 1px solid #dddddd;
  }

  .navbar-light .navbar-nav .nav-link,
  .sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 10px 0;
    margin-left: 0;
    color: var(--bs-dark) !important;
  }

  .navbar-light .navbar-brand img {
    max-height: 45;
  }

  .hero-header {
    margin-top: -100px !important;
  }
}

@media (min-width: 992px) {
  .navbar-light {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    background: transparent !important;
    z-index: 999;
  }

  .sticky-top.navbar-light {
    position: sticky !important;
    background: var(--bs-light) !important;
  }
}
/*** Navbar End ***/

/*** Visi Misi Start ***/
.decorative-element {
  width: 100%;
  max-width: 300px;
  text-align: center;
}

/* Geometric Shapes */
.geometric-shape {
  position: relative;
  height: 200px;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shape-circle {
  width: 120px;
  height: 120px;
  border: 3px solid #f8ae00;
  border-radius: 50%;
  position: absolute;
  animation: rotate 8s linear infinite;
}

.shape-triangle {
  width: 0;
  height: 0;
  border-left: 40px solid transparent;
  border-right: 40px solid transparent;
  border-bottom: 70px solid #ff8800;
  position: absolute;
  opacity: 0.8;
  animation: float 3s ease-in-out infinite;
}

.shape-square {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  position: absolute;
  border-radius: 8px;
  animation: pulse 2s ease-in-out infinite;
}

/* Quote Box */
.quote-box {
  background: linear-gradient(135deg, #fff, #f8f9fa);
  padding: 30px 25px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border-left: 4px solid #f8ae00;
  position: relative;
}

.quote-mark {
  font-size: 48px;
  color: #f8ae00;
  font-family: serif;
  line-height: 1;
  position: absolute;
  top: 10px;
  left: 20px;
  opacity: 0.3;
}

.quote-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-style: italic;
  color: #333;
  margin: 0 0 15px 0;
  line-height: 1.6;
}

.quote-author {
  font-family: 'Cinzel', serif;
  font-size: 12px;
  color: #f8ae00;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Animations */
@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

/* Responsive */
@media (max-width: 768px) {
  .geometric-shape {
    height: 150px;
    margin-bottom: 30px;
  }
  
  .shape-circle {
    width: 90px;
    height: 90px;
  }
  
  .shape-triangle {
    border-left-width: 30px;
    border-right-width: 30px;
    border-bottom-width: 50px;
  }
  
  .shape-square {
    width: 45px;
    height: 45px;
  }
  
  .quote-box {
    padding: 25px 20px;
  }
  
  .quote-text {
    font-size: 14px;
  }
  
  .quote-mark {
    font-size: 36px;
    top: 5px;
    left: 15px;
  }
}
/*** Visi Misi End ***/
/*** About ***/
.fade-bottom {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  z-index: 3;
}

.about-header {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  margin-bottom: 0;
  min-height: 600px; /* Fallback minimum height */
}

.about-header-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.about-header-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Improved image brightness and contrast */
  filter: brightness(1.1) contrast(1.05);
}

.about-header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Improved gradient overlay for better text readability */
  background: linear-gradient(
    135deg, 
    rgba(248, 174, 0, 0.15) 0%,
    rgba(255, 255, 255, 0.85) 30%,
    rgba(255, 255, 255, 0.95) 70%,
    rgba(248, 174, 0, 0.1) 100%
  );
  z-index: 2;
}

.about-header .container {
  position: relative;
  z-index: 3;
}

/* Decorative accent line */
.accent-line {
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #f8ae00, #ff6b35);
  border-radius: 2px;
  box-shadow: 0 2px 4px rgba(248, 174, 0, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .about-header {
    height: 70vh;
    min-height: 500px;
  }
  
  .about-header h1 {
    font-size: 2.5rem !important;
    letter-spacing: 1px !important;
  }
  
  .about-header p {
    font-size: 1.3rem !important;
  }
  
  .accent-line {
    width: 80px;
    height: 3px;
  }
}

@media (max-width: 576px) {
  .about-header {
    height: 60vh;
    min-height: 450px;
  }
  
  .about-header h1 {
    font-size: 2rem !important;
  }
  
  .about-header p {
    font-size: 1.1rem !important;
  }
  
  .accent-line {
    width: 60px;
  }
}

/* Hover effect for the entire section */
.about-header:hover .about-header-background img {
  transform: scale(1.02);
  transition: transform 0.5s ease;
}

/* Animation improvements */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-header h1 {
  animation: fadeInUp 1s ease-out;
}

.about-header p {
  animation: fadeInUp 1s ease-out 0.3s both;
}

.accent-line {
  animation: fadeInUp 1s ease-out 0.2s both;
}


/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    rgba(255, 217, 0, 0.05),
    rgba(102, 16, 242, 0.05)
  );
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 150px 0 60px 0;
  margin-bottom: 6rem;
  transition: 0.5s;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff);
}



.bg-breadcrumb .breadcrumb {
  position: relative;
  z-index: 2;
}

.mb-6 {
  margin-bottom: 4rem !important;
}
.text-center.mx-auto.mb-3 p {
  margin-bottom: 4rem; 
}

@media (max-width: 992px) {
  .bg-breadcrumb {
    padding-top: 100px !important;
  }
}

.bg-breadcrumb .breadcrumb-item a {
  color: var(--bs-dark) !important;
}

.breadcrumb-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.breadcrumb-animation li {
  position: absolute;
  display: block;
  list-style: none;
  width: 20px;
  height: 20px;
  background: rgba(102, 16, 242, 0.07);
  animation: animate 25s linear infinite;
  bottom: -150px;
}

.breadcrumb-animation li:nth-child(1) {
  left: 25%;
  width: 80px;
  height: 80px;
  animation-delay: 0s;
}

.breadcrumb-animation li:nth-child(2) {
  left: 10%;
  width: 20px;
  height: 20px;
  animation-delay: 2s;
  animation-duration: 12s;
}

.breadcrumb-animation li:nth-child(3) {
  left: 70%;
  width: 20px;
  height: 20px;
  animation-delay: 4s;
}

.breadcrumb-animation li:nth-child(4) {
  left: 40%;
  width: 60px;
  height: 60px;
  animation-delay: 0s;
  animation-duration: 18s;
}

.breadcrumb-animation li:nth-child(5) {
  left: 65%;
  width: 20px;
  height: 20px;
  animation-delay: 0s;
}

.breadcrumb-animation li:nth-child(6) {
  left: 75%;
  width: 110px;
  height: 110px;
  animation-delay: 3s;
}

.breadcrumb-animation li:nth-child(7) {
  left: 35%;
  width: 150px;
  height: 150px;
  animation-delay: 7s;
}

.breadcrumb-animation li:nth-child(8) {
  left: 50%;
  width: 25px;
  height: 25px;
  animation-delay: 15s;
  animation-duration: 45s;
}

.breadcrumb-animation li:nth-child(9) {
  left: 20%;
  width: 15px;
  height: 15px;
  animation-delay: 2s;
  animation-duration: 35s;
}

.breadcrumb-animation li:nth-child(10) {
  left: 85%;
  width: 150px;
  height: 150px;
  animation-delay: 0s;
  animation-duration: 11s;
}

@keyframes animate {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
    border-radius: 0;
  }

  100% {
    transform: translateY(-1000px) rotate(720deg);
    opacity: 0;
    border-radius: 50%;
  }
}
/*** Single Page Hero Header End ***/

/*** Hearo Header Start ***/
.header::after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: var(--bs-light);
  border-radius: 22% 78% 33% 67% / 32% 0% 100% 68%;
  animation: bgMove 5s linear infinite;
  z-index: -1;
}

@keyframes bgMove {
  0% {
    right: 0px;
  }
  50% {
    right: 20px;
  }
  100% {
    right: 0px;
  }
}

.header::before {
  content: "";
  position: absolute;
  bottom: -9%;
  left: -7%;
  width: 400px;
  height: 400px;
  border-radius: 200px;
  border: 30px solid rgba(247, 71, 128, 0.05);
  background: transparent;
  animation: RotateMoveHeader 5s linear infinite;
  z-index: -1;
}

@keyframes RotateMoveHeader {
  0% {
    -webkit-transform: rotateZ(0deg) rotate(0deg) translate3d(0, 1%, 0)
      rotateZ(0deg);
    transform: rotateZ(0deg) rotate(0deg) translate3d(0, 1%, 0) rotateZ(0deg);
  }
  100% {
    -webkit-transform: rotateZ(360deg) rotate(360deg) translate3d(0, 1%, 0)
      rotateZ(-360deg);
    transform: rotateZ(360deg) rotate(360deg) translate3d(0, 1%, 0)
      rotateZ(-360deg);
  }

  0% {
    bottom: 0px;
  }
  50% {
    left: -10px;
  }
  75% {
    bottom: 9%;
  }
  100% {
    bottom: 0px;
  }
}

.hero-header {
  padding-top: 160px;
  padding-bottom: 100px;
  position: relative;
}

.hero-header::after {
  content: "";
  position: absolute;
  left: 100px;
  bottom: 100px;
  width: 58px;
  height: 50px;
  background: url(../img/sty-1.png) center center no-repeat;
  animation: RotateMoveSty-3 45s linear infinite;
  transition: 0.5s;
  z-index: -1;
}

@keyframes RotateMoveSty-3 {
  0% {
    left: 100px;
  }
  40% {
    bottom: -0px;
  }
  50% {
    left: 700px;
  }
  70% {
    bottom: 500px;
  }
  80% {
    left: 400px;
  }
  95% {
    bottom: -0px;
  }
  100% {
    left: 100px;
  }
}

.hero-header::before {
  content: "";
  position: absolute;
  left: 100px;
  bottom: 100px;
  width: 300px;
  height: 300px;
  border-radius: 150px;
  border: 30px solid rgba(102, 16, 242, 0.05);
  background: transparent;
  animation: RotateMoveSty-4 45s linear infinite;
  transition: 0.5s;
  z-index: -1;
}

@keyframes RotateMoveSty-4 {
  0% {
    left: 100px;
  }
  40% {
    bottom: -0px;
  }
  50% {
    left: 700px;
  }
  70% {
    bottom: 500px;
  }
  80% {
    left: 400px;
  }
  95% {
    bottom: -0px;
  }
  100% {
    left: 100px;
  }
}

.hero-header .rotate-img {
  position: absolute;
  top: 70px;
  left: 20px;
}

.hero-header .rotate-img .rotate-sty-2 {
  position: absolute;
  top: 100px;
  left: 50px;
  width: 50px;
  height: 50px;
  border-radius: 30px;
  border: 5px solid rgba(247, 71, 128, 0.1);
  background: transparent;
  animation: RotateMoveSty-2 45s linear infinite;
  transition: 0.5s;
}

@keyframes RotateMoveSty-2 {
  0% {
    left: 0px;
  }
  40% {
    top: -30px;
  }
  50% {
    left: 500px;
  }
  70% {
    top: 200px;
  }
  80% {
    left: 100px;
  }
  95% {
    top: -30px;
  }
  100% {
    left: 0px;
  }
}

.hero-header .rotate-img img {
  position: relative;
  animation: RotateMove 30s linear infinite;
  z-index: -1;
}

@keyframes RotateMove {
  0% {
    left: 0px;
  }
  50% {
    left: 200px;
  }
  100% {
    left: 0px;
  }
}

@media (max-width: 992px) {
  .hero-header {
    padding-top: 280px;
  }

  .hero-header .rotate-img img {
    margin-top: 100px;
  }
}
/*** Hero Header End ***/

/*** Service Start ***/
.service .service-item {
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.1);
}

.service .service-item,
.service .service-item .service-icon,
.service .service-item a {
  transition: 0.5s;
}

.service .service-item:hover {
  background: rgba(102, 16, 242, 0.09);
  border: 1px;
}

.service .service-item:hover .service-icon,
.service .service-item:hover a {
  background: var(--bs-white) !important;
}

.service .service-item:hover a:hover {
  background: var(--bs-primary) !important;
  color: var(--bs-white);
}

/*** Service End ***/

/*** Features Start ***/
.feature .feature-img {
  background: var(--bs-light);
  border-radius: 58% 42% 21% 79% / 30% 29% 71% 70%;
}
/*** Features End ***/

/*** Pricing Start ***/
.price .price-item {
  position: relative;
  overflow: hidden;
  transition: 0.5s;
}

.price .price-item:hover {
  background: var(--bs-white) !important;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.2);
}

.price .price-item .pice-item-offer {
  position: absolute;
  width: 200px;
  height: 110px;
  top: -45px;
  right: -80px;
  background: var(--bs-primary) !important;
  color: var(--bs-white);
  transform: rotate(42deg);
  display: flex;
  align-items: end;
  justify-content: center;
  padding-bottom: 10px;
}
/*** Pricing End ***/

/*** Blog Start ***/
.blog .blog-item {
  border-radius: 10px;
}

.blog .blog-item .blog-img {
  position: relative;
  overflow: hidden;
  background: rgba(102, 16, 242, 0.2);
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
}

.blog .blog-item .blog-img .blog-info {
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  padding: 20px;
  background: rgba(102, 16, 242, 0.2);
  color: var(--bs-white) !important;
  display: flex;
  align-items: end;
  justify-content: space-between;
  transition: 0.5s;
}

.blog .blog-item .blog-img:hover .blog-info {
  background: rgba(0, 0, 0, 0.4);
}

.blog .blog-item .blog-content {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.blog .blog-item .blog-img img {
  transition: 0.5s;
}

.blog .blog-item .blog-img:hover img {
  transform: scale(1.3);
}
/*** Blog End ***/

/*** Testimonial Start ***/
.testimonial {
  position: relative;
  background: var(--bs-light);
  overflow: hidden;
  z-index: 1;
}
.testimonial::after {
  content: "";
  position: absolute;
  top: 30%;
  left: 0;
  width: 80px;
  height: 80px;
  border-radius: 40px;
  background: url(../img/testimonial-img-2.jpg) center center no-repeat;
  animation: TestimonialMoveLeft 100s linear infinite;
  z-index: -1;
}

.testimonial::before {
  content: "";
  position: absolute;
  top: 30%;
  right: 0;
  width: 80px;
  height: 80px;
  border-radius: 40px;
  background: url(../img/testimonial-img-3.jpg) center center no-repeat;
  animation: TestimonialMoveRight 100s linear infinite;
  z-index: -1;
}

@keyframes TestimonialMoveLeft {
  0% {
    left: 0px;
  }
  25% {
    top: 100px;
  }
  50% {
    left: 100%;
  }
  75% {
    top: 80%;
  }
  100% {
    left: 0px;
  }
}

@keyframes TestimonialMoveRight {
  0% {
    right: 0px;
  }
  25% {
    top: 100px;
  }
  50% {
    right: 100%;
  }
  75% {
    top: 80%;
  }
  100% {
    right: 0px;
  }
}

.testimonial .testimonial-carousel.owl-carousel {
  position: relative;
  padding: 0 35px;
  transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-nav .owl-prev {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  width: 65px;
  height: 65px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(102, 16, 242, 0.09);
  color: var(--bs-primary);
  transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 65px;
  height: 65px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(102, 16, 242, 0.09);
  color: var(--bs-primary);
  transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial .testimonial-carousel .owl-nav .owl-next:hover {
  background: var(--bs-primary);
  color: var(--bs-white) !important;
}

.testimonial-carousel .owl-dots {
  width: 100%;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot img {
  width: 40px;
  height: 40px;
  border-radius: 20px;
  margin-right: 15px;
  transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot.active img {
  width: 70px;
  height: 70px;
  border-radius: 40px;
  border: 4px solid var(--bs-secondary);
}

@media (min-width: 900px) {
  .testimonial
    .testimonial-carousel
    .testimonial-item
    .testimonial-inner
    p.fs-7 {
    font-size: 20px;
  }
}

@media (max-width: 576px) {
  .testimonial .testimonial-carousel.owl-carousel {
    padding: 0;
  }

  .testimonial .testimonial-carousel .owl-nav .owl-prev {
    margin-top: -250px;
    margin-left: -15px;
  }

  .testimonial .testimonial-carousel .owl-nav .owl-next {
    margin-top: -250px;
    margin-right: -15px;
  }
}
/*** Testimonial End ***/

/*** Contact Start ***/
.contact {
  position: relative;
  overflow: hidden;
  transition: 0.5s;
  z-index: 1;
}

.contact::after {
  content: "";
  position: absolute;
  top: 10%;
  left: -1%;
  width: 400px;
  height: 400px;
  border-radius: 200px;
  border: 60px solid rgba(102, 16, 242, 0.05);
  background: transparent;
  animation: ContactMoveLeft 50s linear infinite;
  z-index: 1;
}

@keyframes ContactMoveLeft {
  0% {
    left: 0px;
  }
  25% {
    top: 100px;
  }
  50% {
    left: 90%;
  }
  75% {
    top: 80%;
  }
  100% {
    left: 0px;
  }
}

.contact::before {
  content: "";
  position: absolute;
  top: 10%;
  right: -1%;
  width: 400px;
  height: 400px;
  border-radius: 200px;
  border: 60px solid rgba(102, 16, 242, 0.05);
  background: transparent;
  animation: ContactMoveRight 50s linear infinite;
  z-index: 1;
}

@keyframes ContactMoveRight {
  0% {
    right: 0px;
  }
  25% {
    top: 100px;
  }
  50% {
    right: 90%;
  }
  75% {
    top: 80%;
  }
  100% {
    right: 0px;
  }
}
/*** Contact End ***/

/*** Footer Start ***/
.footer {
  background: linear-gradient(
    rgba(102, 16, 242, 0.05),
    rgba(102, 16, 242, 0.05)
  );
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.footer .footer-item a {
  line-height: 35px;
  color: var(--bs-dark);
  transition: 0.5s;
}

.footer .footer-item p {
  line-height: 35px;
}

.footer .footer-item a:hover {
  letter-spacing: 2px;
  color: var(--bs-primary);
}

/*** Footer End ***/

/*** copyright Start ***/
.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--bs-dark) !important;
}
/*** copyright end ***/

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 1001;
  }

  .nav-menu {
    display: none;
  }

  .nav-menu.show {
    display: block;
  }
}

.img-visi-misi {
  height: auto; 
  border-radius: 32px;
  border-image: linear-gradient(135deg, #e05800, #fffbe6, #e05800) 1;
  box-shadow: 0 8px 32px 0 rgba(248, 174, 0, 0.18);
  transition: transform 0.4s, box-shadow 0.4s;
}
.img-visi-misi:hover {
    transform: scale(1.03) rotate(1deg);
    box-shadow: 0 16px 48px 0 #e05800, 0 4px 16px 0 rgba(0,0,0,0.13);
}

.logo-overlay {
  position: absolute;
  bottom: 250px;
  left: 450px;
  width: 250px;
  height: auto;
  z-index: 10;
}

.card-3 {
  perspective: 1000px;
  min-height: 350px;
}

.card-3-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.card-3:hover .card-3-inner {
  transform: rotateY(180deg);
}

.card-3-front,
.card-3-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
}

.card-3-front {
  background: white;
  display: flex;
  flex-direction: column;
}

.card-3-front img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.card-3-front .content {
  padding: 15px;
  box-sizing: border-box;
  overflow-wrap: break-word;
  word-break: break-word;
  flex-grow: 1;
}

.card-3-back {
  background: linear-gradient(45deg, #f8ae00, #df7f3f);
  color: white;
  transform: rotateY(180deg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 30px;
  text-align: center;
}


.swiper {
  width: 100%;
  height: 500px;
  border-radius: 15px;
  overflow: hidden;
}

.swiper-slide {
  display: flex;
  gap: 20px;
  padding: 10px;
}

.image-item {
  flex: 1;
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.image-item:hover img {
  transform: scale(1.1);
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 25px 15px 15px;
  text-align: left;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.image-item:hover .image-overlay {
  transform: translateY(0);
}

.image-title {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 5px;
}

.image-description {
  font-size: 0.85rem;
  opacity: 0.9;
  line-height: 1.4;
}

/* Custom Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
  color: white;
  background: rgba(0, 0, 0, 0.6);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-top: -25px;
  transition: background 0.3s ease;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 20px;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: rgba(0, 0, 0, 0.8);
}

/* Custom Pagination */
.swiper-pagination {
  bottom: -50px;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(102, 126, 234, 0.3);
  opacity: 1;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  background: #667eea;
  transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .swiper-slide {
    gap: 15px;
    padding: 8px;
  }

  .image-title {
    font-size: 1rem;
  }

  .image-description {
    font-size: 0.8rem;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 20px;
  }

  .title {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .swiper {
    height: 400px;
  }

  .swiper-slide {
    flex-direction: column;
    gap: 15px;
    padding: 10px;
  }

  .image-item {
    height: 120px;
  }

  .image-overlay {
    transform: translateY(0);
    background: rgba(0, 0, 0, 0.7);
    padding: 15px 10px 10px;
  }

  .image-title {
    font-size: 0.9rem;
  }

  .image-description {
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .swiper {
    height: 350px;
  }

  .title {
    font-size: 1.5rem;
  }

  .image-item {
    height: 100px;
  }

  .swiper-slide {
    gap: 10px;
    padding: 5px;
  }
}

/* Loading animation */
.image-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
  z-index: 1;
}

.image-item img {
  position: relative;
  z-index: 2;
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

.image-item img:loaded + .image-item::before {
  display: none;
}

.bg-overlay {
  position: relative;
  background-image: url("/img/pengurus.JPG");
  background-size: cover;
  background-position: center 80%;
  background-repeat: no-repeat;
  overflow: hidden;
}

.bg-overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* overlay gelap */
  z-index: 1;
}

/* Tambahkan ini untuk memastikan teks tampil di atas overlay */
.bg-overlay .container,
.bg-overlay .container-fluid,
.bg-overlay .text-center {
  position: relative;
  z-index: 2;
}

.bg-web {
  position: relative;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.148), rgba(255, 255, 255, 0.044)),
    linear-gradient(to bottom, rgba(255,255,255,0) 80%, rgba(255,255,255,0.9) 90%, rgba(255,255,255,1)),
    url('/img/home-page.png');
  background-size: 70%;
  background-repeat: no-repeat;
  background-position: right center;
  background-position-x: calc(100% + 50px);
  height: 85vh;
  overflow: hidden;
}

/* Responsif untuk layar kecil (HP) */
@media (max-width: 576px) {
  .bg-web {
    background-size: cover;
    background-position: center;
    background-image: 
      linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.2)),
      linear-gradient(to bottom, rgba(255,255,255,0.3) 60%, rgba(255,255,255,0.8) 90%, rgba(255,255,255,1)),
      url('/img/home-page.png');
    height: 100vh; /* Lebih kecil untuk HP */
  }
}

@media (max-width: 768px) {
  .bg-web {
    background-size: cover;
    background-position: center; /* Geser gambar ke kiri */
    background-image: 
      linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1)),
      linear-gradient(to bottom, rgba(255,255,255,0.2) 70%, rgba(255,255,255,0.9) 95%, rgba(255,255,255,1)),
      url('/img/home-page.png');
    height: 60vh;
  }
}



/* hover  background  Maps */
.map-wrapper {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow 0.4s ease, background-color 0.4s ease;
}

.map-wrapper:hover {
  box-shadow: 0 0 20px rgba(255, 255, 0, 0.4); /* neon kuning tipis */
  background-color: rgba(255, 165, 0, 0.2);    /* latar oranye */
}

  .hover-box {
    transition: all 0.3s ease;
  }

  .hover-box:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    background-color: #fefefe;
    border-radius: 10px;
  }

  .hover-box a {
    color: inherit;
  }

  .hover-box:hover a {
    text-decoration: none;
  }

  .kajian-image {
    max-width: 300px;
    width: 100%;
    height: auto;
    box-shadow: 0 10px 25px rgba(255, 193, 7, 0.4); /* bayangan kuning */
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.kajian-image:hover {
    transform: scale(1.05);
}

.kajian-btn {
  background-color: #e05800;
  color: #fff;
  border: 2px solid #e05800;
  transition: all 0.3s ease;
}

.kajian-btn:hover {
  background-color: #d7ad23;
  border-color: #d7ad23;
  color: #fff;
}

.image-item {
  width: 30%;
  margin: 0 10px;
  display: inline-block;
  position: relative;
}

.swiper-slide {
  display: flex;
  justify-content: center;
}

.image-item img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.image-overlay {
  position: absolute;
  bottom: 0;
  background: rgba(0,0,0,0.6);
  color: #fff;
  width: 100%;
  padding: 10px;
  border-radius: 0 0 10px 10px;
}
/* Styling untuk kartu koordinator secara keseluruhan */
.koordinator-card {
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  background: white;
}

/* Styling untuk placeholder gambar koordinator */
.koordinator-image-placeholder {
  width: 200px;
  height: 200px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(248, 174, 0, 0.3);
  transition: all 0.3s ease;
}

/* Styling untuk gambar di dalam placeholder */
.koordinator-image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

/* Styling untuk overlay gradasi pada gambar koordinator */
.koordinator-image-gradient-overlay {
  background: linear-gradient(
    45deg,
    rgba(248, 174, 0, 0.1),
    rgba(224, 88, 0, 0.1)
  );
}

/* Styling untuk ikon peran koordinator (topi toga/grup) */
.koordinator-role-icon {
  width: 40px;
  height: 40px;
  transform: translate(10px, 10px);
  background: linear-gradient(45deg, #f8ae00, #e05800);
  box-shadow: 0 4px 15px rgba(248, 174, 0, 0.3);
}

/* Styling untuk ikon di dalam ikon peran koordinator */
.koordinator-role-icon i {
  font-size: 16px;
}

/* Styling untuk nama koordinator */
.koordinator-card h5.koordinator-name { /* Menambahkan kelas untuk lebih spesifik */
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #333;
  font-size: 20px;
}

/* Styling untuk badge jabatan koordinator */
.koordinator-badge {
  background: linear-gradient(45deg, #f8ae00, #e05800);
  color: white;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  border-radius: 15px;
}

/* Styling untuk paragraf deskripsi koordinator */
.koordinator-card p.koordinator-description { /* Menambahkan kelas untuk lebih spesifik */
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  line-height: 1.6;
}

/* Styling untuk garis gradasi di bagian bawah kartu */
.koordinator-card-bottom-line {
  background: linear-gradient(90deg, #f8ae00, #e05800);
}


.btn-outline-primary:hover {
  color: #fff !important;
  background-color: #e05800;
  border-color: #e05800;

}

body {
  background-image: url('../img/bg1.jpeg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
}
@media (max-width: 768px) {
  /* Perbaikan untuk tampilan mobile */
  .koordinator-card {
    width: 90%; /* Mengatur lebar agar ada sedikit margin di sisi */
    margin: 0 auto 20px auto; /* Memposisikan di tengah */
  }

  .card-3-front img {
    height: 150px; /* Menyesuaikan tinggi gambar agar kartu tidak terlalu panjang */
  }

  .koordinator-card h5.koordinator-name {
    font-size: 1.2rem; /* Memperbesar ukuran nama */
    margin-top: 10px;
  }

  .koordinator-card p.koordinator-description {
    font-size: 0.9rem; /* Memperbesar ukuran deskripsi */
    line-height: 1.4;
  }
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(248, 174, 0, 0.2);
}