*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

::-webkit-scrollbar{
    width: 0;
}

*, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  background: #FFEDD5;
  color: white;
}

.oleo-script-regular {
  font-family: "Oleo Script", system-ui;
  font-weight: 400;
  font-style: normal;
}

.oleo-script-bold {
  font-family: "Oleo Script", system-ui;
  font-weight: 700;
  font-style: normal;
}

html{
    background-color: #100b0b;
    overflow-x: hidden;
}

/* navbar specific */
nav {
    position: fixed;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: space-between;

    /* smooth, GPU-accelerated animation */
    transition: transform 0.5s cubic-bezier(.2,.9,.2,1), box-shadow 0.28s ease, opacity 0.22s ease;
    will-change: transform;
    transform: translateY(0);

    padding: 20px 50px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 1), transparent);
    z-index: 1000;
}

nav .logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

nav .logo img {
  width: 50px;
  height: 50px;
  border-top: rgb(183, 0, 0) 2px solid;
  border-bottom: rgb(183, 0, 0) 2px solid;
  border-radius: 100%;
}

nav .logo span {
  color: white;
  font-size: 1.2em;
  font-weight: 500;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links li {
  list-style: none;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-size: 1em;
  font-weight: 400;
  transition: 0.3s;
  position: relative;
}

.nav-links li a::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scale(0);
  height: 2px;
  bottom: 0;
  background: #B22222;
  left: 0;
  transition: transform 0.3s ease-out;
}

.nav-links li a:hover {
  color: #B22222;
  cursor: pointer;
}

.nav-links li a:hover::after {
  transform: scale(1);
  transform-origin: bottom-left;
}

/* Hamburger (hidden by default on desktop) */
.hamburger {
  display: none;
  font-size: 2em;
  color: white;
  cursor: pointer;
}

/* Mobile / Tablet */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    background: rgba(0,0,0,0.9);
    flex-direction: column;
    width: 200px;
    text-align: right;
    padding: 20px;
    gap: 20px;
    display: none; /* hidden by default */
  }

  .nav-links.active {
    display: flex; /* show when active */
  }

  .hamburger {
    display: block;
  }
}

/* Explore Section */
.explore {
    position: relative;
    height: 100vh;
    overflow: hidden;   
    background: linear-gradient(#00000080, #0000008f), url(img/mountain6.png);
    background-position: center;
    background-size: cover;
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: #b33a2d; /* merah */
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: 0.3s;
}

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

.text {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 100%;
    z-index: 2;
}

.text h1, .text p {
    font-family: "Oleo Script", system-ui, cursive;
}

.text p {
    font-size: 3em;
    font-weight: 300;
    font-style: italic;
    color: #ffffff;
}
h2 {
    font-size: 2em;
    margin: 10px 0;
    font-style: italic;
    color: #ffffff;
}
.text h1 {
    font-size: 5em;
    margin: 2px 0;
    font-style: italic;
    color: #ffffff;
}

@media screen and (max-width: 768px) {
    .text h1 {
        font-size: 3em;
    }
    .text p {
        font-size: 2em;
    }
    h2 {
        font-size: 1.5em;
    }
}

/* Explore */

.exp{
    width: 100vw;
}

.explore-btn {
    display: inline-block;
    padding: 12px 35px;
    background: #100b0b;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-size: 1em;
    border: 2px solid #B22222;
    transition: all 0.3s ease;
}

.explore-btn:hover {
    box-shadow: inset 0 0 0 40px #bd595979;
    border-color: rgb(96, 28, 28);
}

.explore-btn:active {
    transform: scale(0.95);
}

.exp-img {
    position: absolute;
    bottom: 210px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    z-index: 2;
    width: 80vw; /* Reduced width for less space between images */
    justify-content: center;
}

.exp-imgs {
    width: 250px;
    height: 200px;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0.5;
    transform: scale(0.8);
    z-index: 1;
    transition: 
        left 0.8s cubic-bezier(.77,0,.18,1),
        opacity 0.8s cubic-bezier(.77,0,.18,1),
        transform 0.8s cubic-bezier(.77,0,.18,1),
        z-index 0.8s cubic-bezier(.77,0,.18,1);
}

/* Animate each image to move through all positions */
.exp-imgs:nth-child(1) { animation: carousel 15s infinite; }
.exp-imgs:nth-child(2) { animation: carousel 15s infinite 3s; }
.exp-imgs:nth-child(3) { animation: carousel 15s infinite 6s; }
.exp-imgs:nth-child(4) { animation: carousel 15s infinite 9s; }
.exp-imgs:nth-child(5) { animation: carousel 15s infinite 12s; }

/* Keyframes for 5 images, adjust left for each position */
@keyframes carousel {
    0%   { left: 0%;   opacity: 0.5; transform: scale(0.8); z-index: 1; }
    10%  { left: 0%;   opacity: 0.5; transform: scale(0.8); z-index: 1; }
    20%  { left: 20%;  opacity: 0.8; transform: scale(0.9); z-index: 2; }
    30%  { left: 20%;  opacity: 0.8; transform: scale(0.9); z-index: 2; }
    40%  { left: 40%;  opacity: 1;   transform: scale(1);   z-index: 3; }
    50%  { left: 40%;  opacity: 1;   transform: scale(1);   z-index: 3; }
    60%  { left: 60%;  opacity: 0.8; transform: scale(0.9); z-index: 2; }
    70%  { left: 60%;  opacity: 0.8; transform: scale(0.9); z-index: 2; }
    80%  { left: 80%;  opacity: 0.5; transform: scale(0.8); z-index: 1; }
    90%  { left: 80%;  opacity: 0.5; transform: scale(0.8); z-index: 1; }
    100% { left: 0%;   opacity: 0.5; transform: scale(0.8); z-index: 1; }
}

@media (max-width: 1024px) {
  .exp-img {
    width: 95vw;
  }
  .exp-imgs {
    width: 180px;
    height: 140px;
  }
}

@media (max-width: 768px) {
  .exp-img {
    width: 100vw;
  }
  .exp-imgs {
    width: 120px;
    height: 90px;
  }
}

@media (max-width: 480px) {
  .exp-img {
    width: 100vw;
  }
  .exp-imgs {
    width: 80px;
    height: 60px;
  }
}

/* end explore*/

/* halaman baru */
h2 {
  margin: 50px;
  text-transform: uppercase;
  text-align: center;
  font-size: 50px;
}

.section {
  margin: 40px 20px;
}

.section h1{
    color: #5b1212;
    font-size: 2.5em;
    margin-bottom: 40px;
    text-transform: uppercase;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(115, 0, 0, 0.3);
}

.grid {
  display: grid;
  gap: 20px;
  justify-content: center;
}

/* Grid sesuai kategori (default desktop) */
.amenity { grid-template-columns: repeat(4, 200px); }
.landmark { grid-template-columns: repeat(2, 200px); }
.culinary { grid-template-columns: repeat(3, 200px); }
.culture { grid-template-columns: 200px; }
.event { grid-template-columns: 200px; }

/* .card {
  border-radius: 25px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  color: inherit;


  opacity: 0;
  transform: translateX(-80px);
  transition: all 0.7s ease-out;
} */

.card.show {
  opacity: 1;
  transform: translateX(0);
}

.img {
  flex: 1;
  overflow: hidden;
}

.img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.desc {
  height: 60px;
  background: #ff5959c7;
  color: #000;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
}

.card:hover {
  transform: scale(1.05);
  transition: 0.3s;
  box-shadow: 0 10px 20px rgba(206, 20, 20, 0.808);
}

/* Overlay */
#overlay {
  position: fixed;
  top: 0; left: 0; 
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.90);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

p {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.5;
}

#overlay-content {
  background: rgb(255, 230, 180);
  color: black;
  border-radius: 15px;
  max-width: 700px;
  width: 90%;
  padding: 20px;
  text-align: center;
  position: relative;
  animation: fadeIn 0.4s ease;
}

/* Gambar di dalam card (tetap fix, tidak responsif) */
.card {
  width: 200px;
  height: 240px;
  background: #000000;
  border-radius: 25px 25px 0 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  color: inherit;
}

.img {
  flex: 1;
  overflow: hidden;
}

.img img {
  width: 100%;
  height: 100%;
  object-fit: cover;  /* gambar selalu terisi penuh kotak */
  display: block;
}

/* Gambar di overlay (responsif) */
#overlay-content img {
  width: 100%;
  height: auto;       /* proporsional */
  max-height: 60vh;   /* tidak lebih tinggi dari layar */
  object-fit: contain;
  border-radius: 10px;
  margin-bottom: 15px;
}

#closeBtn {
  position: absolute;
  top: 10px; right: 15px;
  font-size: 22px;
  font-weight: bold;
  color: red;
  cursor: pointer;
}
#overlay-content {
  background: rgb(255, 230, 180);
  color: black;
  border-radius: 15px;
  max-width: 700px;
  width: 90%;
  max-height: 80vh;   /* ⬅️ tinggi maksimal 80% layar */
  padding: 20px;
  text-align: center;
  position: relative;
  animation: fadeIn 0.4s ease;
  overflow-y: auto;   /* ⬅️ bisa discroll kalau isi kepanjangan */
}

/* Scroll bar biar lebih rapi */
#overlay-content::-webkit-scrollbar {
  width: 6px;
}
#overlay-content::-webkit-scrollbar-thumb {
  background: #ff7777;
  border-radius: 6px;
}
#overlay-content::-webkit-scrollbar-track {
  background: #ffffff00;
}
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

/* ============== RESPONSIVE ============== */

/* Tablet */
@media (max-width: 1024px) {
  h2 { font-size: 36px; }

  .amenity { grid-template-columns: repeat(3, 1fr); }
  .culinary { grid-template-columns: repeat(2, 1fr); }
  .landmark { grid-template-columns: repeat(2, 1fr); }
}

/* HP besar */
@media (max-width: 768px) {
  h2 { font-size: 28px; margin: 30px; }

  .amenity, .culinary, .landmark {
    grid-template-columns: repeat(2, 1fr);
  }
  .culture, .event {
    grid-template-columns: 1fr;
  }

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

  .desc {
    font-size: 13px;
    padding: 8px;
  }
}

/* HP kecil */
@media (max-width: 480px) {
  h2 { font-size: 22px; margin: 20px; }

  .amenity, .culinary, .landmark, .culture, .event {
    grid-template-columns: 1fr;
  }

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

  .desc {
    font-size: 12px;
  }
}

/* end about */

/* maps */

.kakaskasen-maps-section {
    width: 100%;
    padding: 60px 20px;
    background: linear-gradient(135deg, #FFEDD5 0%, #F4E4C1 100%);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.kakaskasen-maps-section__title {
    margin-bottom: 40px;
    font-size: 3rem;
    font-weight: bold;
    color: #74130a;
    text-shadow: 3px 3px 6px rgba(116, 19, 10, 0.3);
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

.kakaskasen-maps-section__title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #f5576c, #74130a);
    border-radius: 2px;
}

.kakaskasen-maps-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    margin-top: 20px;
}

.kakaskasen-map-section {
    width: 100%;
    max-width: 1200px;
    height: auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.kakaskasen-map-header {
    background: linear-gradient(135deg, #5b1212, #8b2635);
    color: white;
    padding: 20px;
    text-align: center;
}

.kakaskasen-map-header__title {
    font-size: 1.5em;
    margin-bottom: 5px;
}

.kakaskasen-map-header__subtitle {
    font-size: 0.9em;
    opacity: 0.9;
}

.kakaskasen-google-map {
    width: 100%;
    height: 500px;
    border: none;
    display: block;
}

.kakaskasen-info-cards-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
}

.kakaskasen-info-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.kakaskasen-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.kakaskasen-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
}

.kakaskasen-card-icon {
    flex-shrink: 0; /* biar tidak mengecil saat layar kecil */
    width: 60px;
    height: 60px;
    min-width: 60px;
    min-height: 60px;
    background: linear-gradient(135deg, #5b1212, #B22222);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5em;
    margin-right: 15px;
    box-shadow: 0 4px 15px rgba(91, 18, 18, 0.3);
    aspect-ratio: 1 / 1; /* memastikan tetap lingkaran sempurna di semua ukuran */
}

.kakaskasen-card-title {
    font-size: 1.3em;
    color: #333;
    font-weight: 600;
}

.kakaskasen-card-content {
    color: #666;
    line-height: 1.6;
}

.kakaskasen-info-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 10px;
}

.kakaskasen-info-item__icon {
    color: #5b1212; /* warna merah gelap sama dengan card lain */
    font-size: 10px; /* ukuran kecil sesuai contoh */
    margin-top: 6px; /* biar sejajar dengan teks */
    flex-shrink: 0; /* jangan berubah ukuran */
}

.kakaskasen-info-item span {
    display: block;
    margin-bottom: 5px;
    line-height: 1.4;
}

.kakaskasen-info-row {
  display: flex;
  align-items: flex-start; /* sejajarkan titik dengan teks */
  gap: 8px; /* jarak antara titik dan teks */
}

.kakaskasen-info-row span {
  color: #555;
  font-size: 16px;
  line-height: 1.5;
}

.kakaskasen-coordinates {
    background: #f8f9fa;
    padding: 10px;
    border-radius: 8px;
    margin: 10px 0;
    font-family: 'Courier New', monospace;
    border: 1px solid #e9ecef;
}

.kakaskasen-section-divider {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.kakaskasen-section-divider:last-child {
    border-bottom: none;
    margin-bottom: 15px;
}

.kakaskasen-section-divider__title {
    color: #5b1212;
    font-size: 1.1em;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.kakaskasen-section-divider__title-icon {
    color: #B22222;
}

.kakaskasen-contact-buttons-group {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.kakaskasen-contact-button {
    display: inline-block;
    background: linear-gradient(135deg, #5b1212, #B22222);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9em;
    margin-top: 10px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.kakaskasen-contact-button:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(91, 18, 18, 0.4);
}

@media (max-width: 768px) {
    .wrapper

    .kakaskasen-maps-container {
        gap: 30px;
    }
    
    .kakaskasen-maps-section__title {
        font-size: 2.2em;
    }
    
    .kakaskasen-info-card {
        padding: 20px;
    }
    
    .kakaskasen-card-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1em;
    }
    
    .kakaskasen-card-title {
        font-size: 1.1em;
    }

    .kakaskasen-card-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .kakaskasen-map-section {
        width: 95%;
    }
    
    .kakaskasen-info-cards-section {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .kakaskasen-card-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 480px) {
    .kakaskasen-maps-section {
        padding: 40px 15px;
    }
    
    .kakaskasen-maps-section__title {
        font-size: 1.8em;
    }
    
    .kakaskasen-info-card {
        padding: 15px;
    }
    
    .kakaskasen-card-header {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 15px; /* memberi jarak aman */
        flex-wrap: wrap;
    }
    
    .kakaskasen-card-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }
}

/* end map */

/* lembaga */

.lembaga{
    width: 100vw;
    padding-top: 60px;
    text-align: center;
}

.lembaga h1{
    font-size: 3rem;
    font-weight: bold;
    color: #74130a;
    text-shadow: 3px 3px 6px rgba(116, 19, 10, 0.3);
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.lembaga h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #f5576c, #74130a);
    border-radius: 2px;
}

.lembody{
    display: flex;
    width: 80%;
    margin: 0 auto;
    justify-content: space-evenly;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.lemtext{
    max-width: 500px;
}

.lembgs{
    max-width: 600px;
}

.lemtext, .lembgs{
    flex: 1 1 400px;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lemtitle{
    font-size: 1.75em;
    color: #5b1212;
    margin-bottom: 20px;
    background-color: #c36262;
    width: fit-content;
    padding: 20px 35px;
    border-radius: 25px;
    font-weight: bold;
}

.lemdesc p{
    font-size: 1em;
    color: #eeeeee;
    text-align: justify;
    line-height: 1.6;
    background-color: #c36262;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .lembaga h1 {
        font-size: 2.2rem;
    }

    .lemtitle{
        font-size: 1.1em;
        padding: 15px 25px;
    }
}

.leminmaps {
    position: relative;
    width: 100%;
    height: 600px;
}

.node {
    font-size: 0.9em;
    position: absolute;
    background-color: #c36262;
    color: #eee;
    padding: 12px 20px;
    border-radius: 20px;
    font-weight: bold;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    z-index: 11;
}



/* Positioning nodes to match diagram */
.center { top: 5%; left: 50%; transform: translateX(-50%); }
.left-top { top: 25%; left: 10%; }
.left-mid { top: 45%; left: 20%; }
.right-top { top: 25%; right: 10%; }
.bottom-mid { top: 45%; left: 65%; transform: translateX(-50%); }
.bottom-left { top: 80%; left: 35%; }
.bottom-right { top: 80%; right: 10%; }

.arrows {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.arrows line {
    stroke: black;
    stroke-width: 2;
}

@media (max-width: 768px) {
    .lembody {
        flex-direction: column;
        width: 100%;
    }

    .lembgs, .lemtext {
        max-width: 90%;
    }

    .leminmaps {
        height: 400px;
    }

    .center { top: 5%; left: 50%; transform: translateX(-50%); }
    .left-top { top: 25%; left: -10%; }
    .left-mid { top: 45%; left: 0%; }
    .right-top { top: 25%; right: -10%; }
    .bottom-mid { top: 45%; left: 75%; transform: translateX(-50%); }
    .bottom-left { top: 80%; left: 15%; }
    .bottom-right { top: 80%; right: -10%; }

    .leminmaps .arrows line:nth-of-type(5), .leminmaps .arrows line:nth-of-type(6) {
        x1: 75%;
    }
}

/* end lembaga */

/* package */
.package{
    text-align: center;
    background: #5b1212;
    padding: 60px 20px;
}

.package h1{
    margin-bottom: 40px;
    font-size: 3rem;
    font-weight: bold;
    color: #ffffff;
    text-shadow: 3px 3px 6px rgba(255, 187, 181, 0.3);
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.package h1::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #f5576c, #ffffff);
    border-radius: 2px;
}

.carousel-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    padding: 0 40px;
}
.carousel {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    width: 100%;
}

.carousel-viewport {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    flex: 0 0 33.333%;
    padding: 0 10px;
    display: flex;
    justify-content: center;
}

.package-card {
    background: white;
    border-radius: 10px; 
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: auto;
    width: 100%;
    max-width: 350px;
    aspect-ratio: 9 / 13;
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.card-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #333;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 10;
}

.carousel-nav:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.carousel-nav.prev {
    left: 0;
}

.carousel-nav.next {
    right: 0;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
    width: 100%;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #e74c3c;
    transform: scale(1.2);
}

/* Card backgrounds using the actual poster images */
.card-1 {
    background-image: url(img/poster1.jpg);
}

.card-2 {
    background-image: url(img/poster2.jpg);
}

.card-3 {
    background-image: url(img/poster3.jpg);
}

.card-4 {
    background-image: url(img/poster4.jpg);
}

.card-5 {
    background-image: url(img/poster5.jpg);
}

.card-6 {
    background-image: url(img/poster6.jpg);
}

.card-7 {
    background-image: url(img/poster7.jpg);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    overflow-y: auto;
    padding: 20px;
}

.modal-content {
    position: relative;
    background-color: #FFEDD5;
    margin: 40px auto;
    padding: 30px;
    border-radius: 15px;
    max-width: 900px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: modalFadeIn 0.3s;
}

@keyframes modalFadeIn {
    from { opacity: 0; transform: translateY(-50px); }
    to { opacity: 1; transform: translateY(0); }
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    color: #aaa;
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal:hover {
    color: #e74c3c;
}

.modal-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.modal-image {
    width: 40%;
    height: 450px;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.modal-title {
    margin-left: 30px;
    width: 60%;
    text-align: center;
}

.modal-title h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 15px;
    text-align: center;
}

.modal-subtitle {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    font-style: italic;
}

.modal-title p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

.modal-body {
    margin-top: 25px;
}

.modal-body h3 {
    font-size: 1.5rem;
    color: #5b1212;
    margin-bottom: 15px;
    border-bottom: 2px solid #B22222;
    padding-bottom: 8px;
}

.modal-body p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.package-details {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px 0;
}

.detail-item {
    flex: 1 0 calc(50% - 20px);
    background: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.detail-item h4 {
    color: #e74c3c;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.detail-item p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.detail-points {
    margin-top: 15px;
}

.detail-points ul {
    padding-left: 20px;
}

.detail-points li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #555;
}

.contact-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 15px rgba(0,0,0,0.3);
}

.social-icon.whatsapp {
    background: #25D366;
}

.social-icon.email {
    background: #D44638;
}

.social-icon:hover.whatsapp {
    background: #128C7E;
}

.social-icon:hover.email {
    background: #B23121;
}

.social-icon.instagram {
    background: #E1306C;
}

.social-icon:hover.instagram {
    background: #C13584;
}

@media (max-width: 1024px) {
    .carousel-slide {
        flex: 0 0 50%;
    }
    
    .carousel-container {
        padding: 0 35px;
    }
    
    .modal-header {
        flex-direction: column;
    }
    
    .modal-image {
        width: 100%;
        margin-bottom: 20px;
    }
    
    .modal-title {
        width: 100%;
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .carousel-slide {
        flex: 0 0 100%;
    }
    
    .card {
        height: 450px;
    }
    
    .carousel-nav {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .carousel-container {
        padding: 0 30px;
    }
    
    .modal-content {
        padding: 20px;
        margin: 20px auto;
    }
    
    .modal-title h2 {
        font-size: 1.8rem;
    }
    
    .detail-item {
        flex: 1 0 100%;
    }
    
    .contact-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    
    .carousel-container {
        padding: 0 25px;
    }
    
    .carousel-slide {
        padding: 0 5px;
    }
    
    .modal-content {
        padding: 15px;
    }
    
    .modal-title h2 {
        font-size: 1.5rem;
    }
    
    .modal-body h3 {
        font-size: 1.3rem;
    }
    
    .modal-subtitle {
        font-size: 1rem;
    }
    
    .social-icon {
        width: 45px;
        height: 45px;
        font-size:1.3rem;
    }
}

.tap-here {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(91, 18, 18, 0.85);
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-align: center;
    padding: 10px 0;
    border-top: 2px solid rgba(255,255,255,0.3);
    border-radius: 0 0 10px 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.9;
    z-index: 2;
}

.tap-here:hover {
    background: #e74c3c;
    opacity: 1;
}

/* end package */

/* penginapan */
        /* Main Title Styles */
        .main-title-container {
            text-align: center;
            padding: 50px 0px;
        }

        .main-title {
            font-size: 3rem;
            font-weight: bold;
            color: #74130a;
            text-shadow: 3px 3px 6px rgba(116, 19, 10, 0.3);
            position: relative;
            display: inline-block;
            text-transform: uppercase;
        }

        .main-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(45deg, #f5576c, #74130a);
            border-radius: 2px;
        }

        .unique-dtp-main-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
            min-height: 400px;
        }

        .unique-dtp-carousel-section {
            perspective: 800px;
            height: 500px;
            position: relative;
            padding: 20px;
        }

        .unique-dtp-section-title {
            text-align: center;
            color: #74130a;
            font-size: 1.8rem;
            margin: 20px 0;
            text-shadow: 2px 2px 4px rgba(76, 0, 0, 0.3);
        }

        .unique-dtp-carousel {
            width: 100%;
            height: 300px;
            position: relative;
            transform-style: preserve-3d;
            overflow: visible;
        }

        .unique-dtp-carousel-viewport {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100%;
            position: relative;
            transform-style: preserve-3d;
            transition: transform 0.5s ease-in-out;
        }

        .unique-dtp-carousel-slide {
            position: absolute;
            width: 200px;
            height: 280px;
            transition: all 0.5s ease;
            transform-origin: center;
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
            z-index: 0;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
        }

        /* Position for 3 cards */
        .unique-dtp-carousel-slide.unique-dtp-active-1 { 
            transform: translate(-50%, -50%) translateX(-160px) scale(0.8) rotateY(20deg); 
            z-index: 1; 
            opacity: 0.7; 
        }
        .unique-dtp-carousel-slide.unique-dtp-active-2 { 
            transform: translate(-50%, -50%) translateX(0) scale(1) rotateY(0); 
            z-index: 3; 
            opacity: 1; 
        }
        .unique-dtp-carousel-slide.unique-dtp-active-3 { 
            transform: translate(-50%, -50%) translateX(160px) scale(0.8) rotateY(-20deg); 
            z-index: 1; 
            opacity: 0.7; 
        }

        .unique-dtp-card {
            width: 100%;
            height: 100%;
            transition: all 0.3s ease;
            transform-style: preserve-3d;
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            cursor: pointer;
            position: relative;
        }

        .unique-dtp-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.2);
        }

        .unique-dtp-card-image {
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            position: relative;
        }

        .unique-dtp-carousel-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.9);
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            color: #333;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            z-index: 15;
        }

        .unique-dtp-carousel-nav:hover {
            background: white;
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 6px 20px rgba(0,0,0,0.3);
        }

        .unique-dtp-carousel-nav.unique-dtp-prev {
            left: -30px;
        }

        .unique-dtp-carousel-nav.unique-dtp-next {
            right: -30px;
        }

        /* Card backgrounds - Left Carousel (Adventure) */
        .unique-dtp-left-carousel .unique-dtp-card-1 {
            background-image: url(img/HStay1.jpg);
        }

        .unique-dtp-left-carousel .unique-dtp-card-2 {
            background-image: url(img/HStay2.jpg);
        }

        .unique-dtp-left-carousel .unique-dtp-card-3 {
            background-image: url(img/HStay3.jpg);
        }

        /* Card backgrounds - Right Carousel (Culture) */
        .unique-dtp-right-carousel .unique-dtp-card-1 {
            background-image: url(img/HStay4.jpg);
        }

        .unique-dtp-right-carousel .unique-dtp-card-2 {
            background-image: url(img/HStay5.jpg);
        }

        .unique-dtp-right-carousel .unique-dtp-card-3 {
            background-image: url(img/HStay6.jpg);
        }

        /* Modal Styles */
        .unique-dtp-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.85);
            z-index: 1000;
            overflow-y: auto;
            padding: 20px;
        }

        .unique-dtp-modal-content {
            position: relative;
            background-color: #FFEDD5;
            margin: 20px auto;
            padding: 0;
            border-radius: 15px;
            max-width: 900px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
            animation: unique-dtp-modalFadeIn 0.3s;
            overflow: hidden;
        }

        @keyframes unique-dtp-modalFadeIn {
            from { opacity: 0; transform: translateY(-50px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .unique-dtp-close-modal {
            position: absolute;
            top: 15px;
            right: 20px;
            font-size: 30px;
            color: white;
            cursor: pointer;
            transition: color 0.3s;
            z-index: 10;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        .unique-dtp-close-modal:hover {
            color: #ff4757;
            transform: scale(1.1);
        }

        /* Adventure Modal Style */
        .unique-dtp-modal-header.unique-dtp-adventure {
            background: url(img/HSbg2.jpg);
            background-size: cover;
            color: white;
            text-align: center;
            padding: 50px 30px;
            min-height: 250px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        /* Culture Modal Style */
        .unique-dtp-modal-header.unique-dtp-culture {
            background: url(img/HSbg1.jpg);
            background-size: cover;
            color: #fff;
            text-align: center;
            padding: 50px 30px;
            min-height: 250px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .unique-dtp-modal-title h2 {
            font-size: 2.5rem;
            margin-bottom: 15px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .unique-dtp-modal-body {
            padding: 40px;
            background: #FFEDD5;
        }

        .unique-dtp-modal-body h3 {
            font-size: 1.8rem;
            color: #333;
            margin-bottom: 25px;
            padding-bottom: 10px;
            border-bottom: 3px solid #f5576c;
            text-align: center;
        }

        .unique-dtp-modal-body.unique-dtp-culture h3 {
            border-bottom-color: #f5576c;
        }

        .unique-dtp-modal-body p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #555;
            margin-bottom: 25px;
            text-align: justify;
        }

        .unique-dtp-modal-body ul {
            margin-left: 0;
            margin-bottom: 20px;
            list-style: none;
        }

        .unique-dtp-modal-body li {
            margin-bottom: 15px;
            font-size: 1.05rem;
            line-height: 1.7;
            color: #555;
            padding-left: 25px;
            position: relative;
            text-align: justify;
        }

        .unique-dtp-modal-body li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #f5576c;
            font-weight: bold;
            font-size: 1.2rem;
        }

        .unique-dtp-modal-body.unique-dtp-culture li::before {
            color: #f5576c;
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .unique-dtp-main-container {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .unique-dtp-carousel-section {
                height: 350px;
            }

            .main-title {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 768px) {
            .main-title {
                font-size: 2rem;
            }

            .main-subtitle {
                font-size: 1rem;
            }

            .unique-dtp-carousel-slide {
                width: 150px;
                height: 220px;
            }
            
            .unique-dtp-carousel-slide.unique-dtp-active-1 { 
                transform: translate(-50%, -50%) translateX(-120px) scale(0.7) rotateY(25deg); 
            }
            .unique-dtp-carousel-slide.unique-dtp-active-3 { 
                transform: translate(-50%, -50%) translateX(120px) scale(0.7) rotateY(-25deg); 
            }

            .unique-dtp-carousel-nav.unique-dtp-prev {
                left: -20px;
            }

            .unique-dtp-carousel-nav.unique-dtp-next {
                right: -20px;
            }
            
            .unique-dtp-modal-title h2 {
                font-size: 2rem;
            }
            
            .unique-dtp-section-title {
                font-size: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .main-title {
                font-size: 1.8rem;
            }

            .main-subtitle {
                font-size: 0.9rem;
            }

            .unique-dtp-carousel-slide {
                width: 120px;
                height: 180px;
            }
            
            .unique-dtp-carousel-slide.unique-dtp-active-1 { 
                transform: translate(-50%, -50%) translateX(-100px) scale(0.6) rotateY(30deg); 
            }
            .unique-dtp-carousel-slide.unique-dtp-active-3 { 
                transform: translate(-50%, -50%) translateX(100px) scale(0.6) rotateY(-30deg); 
            }

            .unique-dtp-carousel-nav.unique-dtp-prev {
                left: -15px;
            }

            .unique-dtp-carousel-nav.unique-dtp-next {
                right: -15px;
            }
            
            .unique-dtp-carousel-nav {
                width: 35px;
                height: 35px;
                font-size: 14px;
            }
            
            .unique-dtp-modal-content {
                margin: 10px auto;
            }
            
            .unique-dtp-modal-body {
                padding: 25px;
            }

            .unique-dtp-modal-title h2 {
                font-size: 1.8rem;
            }
        }
/* end penginapan */

/* Footer */
 footer {
    background: #21202e;
    color: #ffffff;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
}

.footer-container {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.footer-column {
    flex: 1 1 200px;
    width: 100px;
    margin: 10px;   
}

.footer-column a{
        text-decoration: none;
        color: white;
}

.footer-logo {
    max-width: 100px;
    margin-bottom: 10px;
    border-top: rgb(183, 0, 0) 2px solid;
    border-bottom: rgb(183, 0, 0) 2px solid;
    border-radius: 100%;
}

.footer-column h3 {
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin: 8px 0;
}

.footer-column ul li i {
    margin-right: 10px;
}

.wrapper {
  display: inline-flex;
  list-style: none;
  height: 120px;
  width: 100%;
  padding-top: 40px;
  font-family: "Poppins", sans-serif;
  justify-content: left;
  gap: 20px;
  color: black;
  margin-left: 30px;
}

@media screen and (max-width: 600px) {
  .wrapper {
    justify-content: center;
    padding-top: 20px;
    gap: 5px;
    height: auto;
    flex-wrap: wrap;
    margin-left: 0;
  }
}

.wrapper .icon {
  position: relative;
  background: #fff;
  border-radius: 50%;
  margin: 10px;
  width: 50px;
  height: 50px;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ensure links inside icons don't override colors */
.wrapper .icon a {
  color: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

/* SVGs inherit color from the li and transition smoothly */
.wrapper .icon svg {
  color: inherit;
  transition: color .18s ease;
  height: 1.5em;
  width: 1.5em; /* Updated to match height */
  pointer-events: none;
  fill: currentColor; /* Tambahkan ini untuk memastikan warna fill mengikuti color */
}

.wrapper .tooltip {
  position: absolute;
  top: 0;
  font-size: 14px;
  background: #fff;
  color: #000; /* readable text */
  padding: 5px 8px;
  border-radius: 5px;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .tooltip::before {
  position: absolute;
  content: "";
  height: 8px;
  width: 8px;
  background: #fff;
  bottom: -3px;
  left: 50%;
  transform: translate(-50%) rotate(45deg);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .icon:hover .tooltip {
  top: -45px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.wrapper .icon:hover span,
.wrapper .icon:hover .tooltip {
  text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
}

/* ===== Default brand colors (normal state) ===== */
.wrapper .facebook svg   { color: #1877F2; } /* Facebook blue */
.wrapper .instagram svg  { color: #E4405F; } /* Instagram */
.wrapper .whatsapp svg   { 
  color: #25D366;
  transform: scale(0.85); /* Slightly reduce size to match others */
} /* WhatsApp green */
.wrapper .email svg      { color: #EA4335; } /* Gmail red */

/* ===== Hover states ===== */
.wrapper .youtube svg   { color: #FF0000; } /* YouTube red */

.wrapper .youtube:hover,
.wrapper .youtube:hover .tooltip,
.wrapper .youtube:hover .tooltip::before {
  background: #FF0000;
  color: #fff;
}
.wrapper .youtube:hover svg { color: #fff; }

/* Tambahkan YouTube di social icons paket wisata */
.social-icon.youtube {
    background: #FF0000;
}

.social-icon:hover.youtube {
    background: #CC0000;
}

.wrapper .instagram:hover,
.wrapper .instagram:hover .tooltip,
.wrapper .instagram:hover .tooltip::before {
  background: #E4405F;
  color: #fff;
}
.wrapper .instagram:hover svg { color: #fff; }

.wrapper .whatsapp:hover,
.wrapper .whatsapp:hover .tooltip,
.wrapper .whatsapp:hover .tooltip::before {
  background: #25D366;
  color: #fff;
}
.wrapper .whatsapp:hover svg { color: #fff; }

.wrapper .email:hover,
.wrapper .email:hover .tooltip,
.wrapper .email:hover .tooltip::before {
  background: #EA4335;
  color: #fff;
}
.wrapper .email:hover svg { color: #fff; }

/* Existing global link style (still works elsewhere) */
.social-icons a {
  color: #fff;
  margin-right: 10px;
  font-size: 20px;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 15px;
}

.footer-bottom a {
  color: #fff;
  text-decoration: none;
  margin-right: 20px;
}

.footer-bottom p {
  margin-top: 10px;
  font-size: 14px;
}

/* About Us Section */
.about-us-section {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 60px 0 40px 0;
}

.about-us-card {
    background: rgba(20,20,20,0.85);
    border-radius: 20px;
    box-shadow: 0 0 20px #B22222;
    max-width: 700px;
    width: 90vw;
    padding: 40px 30px;
    margin: 0 auto;
    text-align: center;
}

.about-us-title {
    font-size: 2em;
    font-weight: bold;
    color: #fff;
    margin-bottom: 25px;
}

.about-us-desc {
    color: #fff;
    font-size: 1.1em;
    line-height: 1.7;
    text-align: center;
}

/* sponsor */
.ticker-wrapper {
            width: 100%;
            background-color: #ffffff;
            overflow: hidden;
            position: relative;
            height: 80px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.3);
        }

        .ticker-content {
            display: flex;
            align-items: center;
            height: 100%;
            animation: scroll-left 30s linear infinite;
            white-space: nowrap;
        }

        .logo-item {
            display: inline-flex;
            align-items: center;
            margin: 0 40px;
            flex-shrink: 0;
        }

        .logo-item img {
            height: 50px;
            width: auto;
            max-width: 200px;
            object-fit: contain;
        }

        @keyframes scroll-left {
            0% {
                transform: translateX(100%);
            }
            100% {
                transform: translateX(-100%);
            }
        }

        /* Pause animation on hover */
        .ticker-wrapper:hover .ticker-content {
            animation-play-state: paused;
        }

        .ticker-title {
            text-align: center;
            margin-bottom: 10px;
            color: #333;
            font-size: 18px;
            font-weight: bold;
        }
/* End of sponsor */

