diff --git a/index.html b/index.html index 7382420f..2514caa7 100644 --- a/index.html +++ b/index.html @@ -361,7 +361,58 @@ border-radius: 10px; } +/* tour guide section */ +.center-card { + display: flex; + justify-content: center; + align-items: center; + position: relative; +} + +.image-container { + margin-top: 80px; + justify-content: center; + align-items: center; + display: flex; + overflow: hidden; + width: 1200px; + height: 400px; +} + +.carousel-images { + display: flex; + transition: transform 0.5s ease-in-out; /* Smooth transition for sliding */ + gap: 10px; +} + +.carousell-item { + min-width: 50%; + max-width: 50%; + height: 450px; + +} + +.prev, .next { + background-color: rgba(0, 0, 0, 0.5); + border: none; + color: white; + cursor: pointer; + padding: 10px; + position: absolute; + top: 50%; + transform: translateY(-50%); + z-index: 1; +} + +.prev { + left: 0; +} + +.next { + right: 0; +} + @@ -1266,6 +1317,55 @@