:root {
  --color1: #D02B15;
  --color1_light: #F1BFB1;
  --color2: #08496F;
  --color3: #C9E202;
  --color4: #00593D;
  --color5: #510E79;
  --color6: #FCB956;
  --color7: #5FEDDD;
  --color8: #D77BF7;
  --light1: #FFF5E9;
  --gray0: #F5F7FF;
  --gray1: #798399;
}

* {
  transition: all linear .5s;
}

.bg_color1 {
  background-color: var(--color1) !important;
}

.bg_color2 {
  background-color: var(--color2) !important;
}

.bg_color3 {
  background-color: var(--color3) !important;
}

.bg_color4 {
  background-color: var(--color4) !important;
}

.bg_color5 {
  background-color: var(--color5) !important;
}

.bg_color6 {
  background-color: var(--color6) !important;
}

.bg_color7 {
  background-color: var(--color7) !important;
}

.bg_color8 {
  background-color: var(--color8) !important;
}

.txt_color1 {
  color: var(--color1) !important;
}

.txt_color2 {
  color: var(--color2) !important;
}

.txt_color3 {
  color: var(--color3) !important;
}

.txt_color4 {
  color: var(--color4) !important;
}

.txt_color5 {
  color: var(--color5) !important;
}

.txt_color6 {
  color: var(--color6) !important;
}

.txt_color7 {
  color: var(--color7) !important;
}

.txt_color8 {
  color: var(--color8) !important;
}

.bg_gray {
  background-color: var(--gray0);
}

.bg_gray1 {
  background-color: var(--gray1);
}

.bg_light1 {
  background-color: var(--light1);
}

body {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
}

.navbar {
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-nav {
  margin-left: auto;
  margin-right: auto;
}

.nav-item:hover {
  font-weight: 500 !important;
}

/* Hero section */

.hero {
  height: 50vh;
  position: relative;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-direction: column;
}

.letters-row {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}

.letter img {
  width: clamp(30px, 15vw, 150px);
  height: auto;
  margin: 0 5px;
  transition: transform 0.2s ease-in-out;
}

[class*="letter_"] img {
  cursor: pointer;
  position: relative !important;
  margin-right: -3.2vw !important;
}

.letter_d {
  z-index: 2;
}

.letter_e {
  z-index: 1;
}

.letter_n {
  z-index: 5 !important;
}

.letter_t1 {
  z-index: 5 !important;
  margin-right: -2vw !important;
}

.letter_a {
  z-index: 1 !important;
}

.letter_ll {
  z-index: 1 !important;
  margin-right: -2.3vw !important;
}

.letter_i {
  z-index: 2 !important;
  margin-right: -2.7vw !important;
}

.letter_t2 {
  z-index: 2 !important;
  margin-right: -1vw !important;
}

.letter_o {
  z-index: 1 !important;
  margin-right: -1vw !important;
}

.letter_s {
  z-index: 5 !important;
  margin-right: -1vw !important;
}

.letter_excl {
  z-index: 5 !important;
}

/* Floating WhatsApp button */

.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  padding: 15px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  font-size: 24px;
  z-index: 1000;
}

.owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}

.owl-nav button {
  background: rgba(255, 255, 255, 0.8);
  border: none;
  padding: 10px;
  cursor: pointer;
  border-radius: 4px;
}

.item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.item img:hover {
  transform: scale(1.05) !important;
}

/* Owl Carousel Dots Styling */

.owl-dots {
  text-align: center;
  margin-top: 20px;
}

.owl-theme .owl-dots .owl-dot span {
  display: inline-block;
  width: 150px;
  height: 4px;
  margin: 5px;
  background: var(--color1);
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.owl-theme .owl-dots .owl-dot span .owl-dot.active {
  background: var(--color1_light);
}

