/* General Styles */
body {
  font-family: 'Roboto', sans-serif;
  color: #333;
  overflow-x: hidden;
}

/* Navigation */
#mainNav {
  background-color: transparent;
  transition: all 0.3s ease-in-out;
  padding: 1rem;
}

#mainNav.navbar-shrink {
  background-color: #222;
  padding: 0.5rem 1rem;
}

.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.9);
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.navbar-dark .navbar-nav .nav-link:hover {
  color: #fff;
}

/* Section Styles */
.page-section {
  padding: 100px 0;
}

.page-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.colored {
  width: 70px;
  height: 3px;
  background-color: #f05f40;
  margin: 20px auto;
  border: none;
}

/* Carousel Styles */
.slider-container {
  width: 100%;
  position: relative;
  padding: 40px 0;
}

.owl-carousel {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
}

.slide {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  padding: 0 80px;
}

.content-left {
  flex: 0 1 500px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.logo {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 48px;
  width: 100%;
}

.logo h2 {
  font-size: 48px;
  font-weight: 500;
  margin: 0;
  line-height: 1;
  white-space: nowrap;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 48px 0;
  width: 100%;
}

.feature-list li {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
  position: relative;
  padding-left: 24px;
  color: #1A1A1A;
}

.feature-list li::before {
  content: "•";
  color: #F26F21; // Bullet Point colour
  font-size: 18px;
  position: absolute;
  left: 0;
  top: -1px;
}

.explore-btn {
  background-color: #00C2FF;
  color: #FFFFFF;
  border: none;
  border-radius: 25px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.explore-btn:hover {
  background-color: #33CFFF;
}

.content-right {
  flex: 0 1 500px;
  height: 500px;
  border-radius: 12px;
  overflow: hidden;
}

.content-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1A1A1A;
  transition: background-color 0.3s ease;
  z-index: 10;
}

.nav-btn:hover {
  background: rgba(0, 0, 0, 0.1);
}

.prev-btn {
  left: 20px;
}

.next-btn {
  right: 20px;
}

.nav-btn svg {
  width: 20px;
  height: 20px;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .slide {
    gap: 60px;
    padding: 0 60px;
  }

  .content-left {
    flex: 0 1 400px;
  }

  .content-right {
    flex: 0 1 400px;
    height: 400px;
  }
}

@media (max-width: 1024px) {
  .slide {
    flex-direction: column;
    gap: 40px;
    padding: 0 20px;
    align-items: center;
  }

  .content-left {
    flex: 0 1 auto;
    width: 100%;
    max-width: 600px;
    align-items: center;
    text-align: center;
  }

  .logo {
    justify-content: center;
    margin-bottom: 30px;
  }

  .logo h2 {
    font-size: 36px;
  }

  .feature-list {
    margin-bottom: 30px;
    text-align: left;
  }

  .content-right {
    flex: 0 1 auto;
    width: 100%;
    max-width: 600px;
    height: auto;
    aspect-ratio: 16/9;
  }
}

@media (max-width: 768px) {
  .page-section {
    padding: 60px 0;
  }

  .page-section h2 {
    font-size: 2rem;
  }

  .logo h2 {
    font-size: 32px;
  }

  .feature-list li {
    font-size: 14px;
    margin-bottom: 12px;
  }

  .explore-btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .page-section {
    padding: 40px 0;
  }

  .logo h2 {
    font-size: 28px;
  }

  .content-right {
    aspect-ratio: 4/3;
  }
}
