* {
  box-sizing: border-box;
}



body {
  font-family: 'Bebas Neue', cursive, sans-serif;
  background-color: rgb(0, 0, 0);
  margin: 0;
  color: #fff;
  padding: 0;
}



.navbar-container {
  background-color: darkslategrey;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  font-size: 32px;
  padding: 20px 0;
  max-width: 1500px;
  margin: 30px auto 0;
  position: relative;
}
.navbar {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
  flex: 1;
  justify-content: center;
}
.navbar li {
  margin: 0 25px;
}
.navbar a {
  color: #ffffff;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 10px;
  font-size: 32px;
  transition: all 0.3s ease;
  display: inline-block;
}
.navbar a:hover {
  background: rgba(255,255,255,0.1);
  color: deepskyblue;
}



.logo {
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
}
.logo img {
  height: 150px;
  filter: brightness(0) invert(1);
}



@media screen and (max-width: 1499px) {
  .logo {
    display: none;
  }
}



.page-content {
  max-width: 900px;
  margin: 50px auto;
  text-align: center;
  line-height: 1.6;
}
.page-content p {
  font-size: 20px;
  line-height: 1.8; 
  margin-bottom: 15px;
}



.carousel-container {
  width: 90%;
  max-width: 1200px;
  margin: 50px auto;
  text-align: center;
}
.carousel-container h1 {
  margin-bottom: 20px;
}
.carousel {
  background: darkslategrey;
  border-radius: 12px;
  overflow: hidden;
}
.carousel-cell {
  width: 100%;
  height: 60vh;
  position: relative;
}
.carousel-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}



.flickity-page-dots {
  bottom: 10px;
}
.flickity-page-dots .dot {
  width: 12px;
  height: 12px;
  margin: 0 5px;
  background: #fff;
  opacity: 0.6;
}
.flickity-page-dots .dot.is-selected {
  opacity: 1;
  background: deepskyblue;
}



.hero-section {
  text-align: center;
  margin-top: 20px;
}
.hero-title {
  font-size: 64px;
  color: white;
  margin-bottom: 20px;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}
.hero-img {
  width: 100%; 
  max-width: 1200px; 
  height: 45vh; 
  object-fit: cover; 
  object-position: 50% 60%; 
  display: block;
  margin: 0 auto;
}




.get-started-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 28px;
    background-color: darkslategrey;
    color: white;
    font-size: 28px;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.get-started-btn:hover {
    background-color: deepskyblue;
    transform: scale(1.05);
}



.why-choose {
    max-width: 1000px;
    margin: 40px auto;
    text-align: center;
}

.why-choose h2 {
    font-size: 40px;
    margin-bottom: 30px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
}

.benefit-box {
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    font-size: 22px;
    line-height: 1.6;
    transition: transform 0.3s ease, background-color 0.3s ease;
}


.benefit-box p {
    margin-top: 10px;
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}
