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

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

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

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

.bg-color9 {
  background: var(--color9) !important;
}

.bg-color10 {
  background: var(--color10) !important;
}

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

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

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

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

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

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

.carousel-indicators {
  list-style: none;
}

a[class*='bg-color'],
button[class*='bg-color'] {
  transition: 0.3s;
}

a[class*='bg-color']:hover,
button[class*='bg-color']:hover {
  opacity: 0.8;
}

/* Modern Header Styles */
.navbar {
  background: linear-gradient(90deg, var(--color5), var(--color6));
  padding: 1.5rem 0;
  transition: all 0.3s ease;
  position: relative;
}

.navbar-brand {
  font-size: 2.2rem;
  letter-spacing: 0.5px;
  transition: transform 0.3s ease;
  color: white !important;
  display: inline-block;
}

.navbar-brand:hover {
  transform: scale(1.05);
}

.navbar-toggler {
  border: 2px solid white;
  padding: 0.5rem;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1001;
  background-color: var(--color5);
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-collapse {
  width: 100%;
}

.navbar-nav {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
  justify-content: center;
  width: 100%;
}

.navbar-nav .nav-link {
  position: relative;
  font-weight: 500;
  padding: 0.5rem 1.2rem;
  margin: 0 0.2rem;
  color: white !important;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background-color: white;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
  width: 80%;
}

@media (max-width: 991.98px) {
  .navbar {
    padding: 1rem 0;
  }

  .navbar-brand {
    font-size: 1.8rem;
    padding-right: 3rem;
  }

  .navbar-collapse {
    background: var(--color5);
    padding: 1rem;
    border-radius: 0.5rem;
    margin-top: 1rem;
    border-top: none;
    position: absolute;
    left: 0;
    right: 0;
    z-index: 1000;
    top: 100%;
  }

  .navbar-nav {
    border-top: none;
    padding-top: 0;
  }

  .navbar-nav .nav-link {
    padding: 0.8rem 1rem;
    text-align: center;
  }
}

/* Hero Section Styles */
.hero-section {
  background: linear-gradient(90deg, var(--color5), var(--color6));
  padding: 6rem 0 8rem;
  position: relative;
  margin-bottom: -2rem;
}

.hero-title {
  color: white;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.hero-button {
  display: inline-block;
  background: white;
  color: var(--color5) !important;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 0.95);
}

@media (max-width: 991.98px) {
  .hero-section {
    padding: 4rem 0 6rem;
    margin-bottom: -1rem;
  }

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

  .hero-text {
    font-size: 1.1rem;
  }

  .hero-button {
    padding: 0.8rem 2rem;
  }
}

/* About Section Styles */
.about-section {
  background: linear-gradient(90deg, var(--color5), var(--color6));
  padding: 8rem 0;
  position: relative;
  color: white;
}

.about-image {
  position: relative;
  z-index: 1;
}

.about-image::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--color5);
  border-radius: 1rem;
  transform: rotate(-3deg);
  z-index: -1;
  opacity: 0.3;
}

.about-image img {
  transition: transform 0.3s ease;
}

.about-image:hover img {
  transform: translateY(-10px);
}

.about-content {
  padding: 2rem 0;
}

.about-title {
  color: white;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
}

.about-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 60px;
  height: 3px;
  background: white;
  border-radius: 2px;
}

.about-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  font-weight: 300;
}

.about-button {
  display: inline-block;
  background: white;
  color: var(--color5) !important;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.about-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 0.95);
}

@media (max-width: 991.98px) {
  .about-section {
    padding: 4rem 0;
  }

  .about-content {
    text-align: center;
    padding: 2rem 0 0;
  }

  .about-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .about-image {
    margin-bottom: 2rem;
  }

  .about-title {
    font-size: 2rem;
  }

  .about-text {
    font-size: 1rem;
  }

  .about-button {
    padding: 0.8rem 2rem;
  }
}

/* Features Section Styles */
.features-section {
  background: linear-gradient(90deg, var(--color5), var(--color6));
  padding: 8rem 0;
  position: relative;
  color: white;
}

.features-header {
  margin-bottom: 4rem;
}

.features-title {
  color: white;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
}

.features-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 60px;
  height: 3px;
  background: white;
  border-radius: 2px;
  transform: translateX(-50%);
}

.features-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  font-weight: 300;
}

.features-button {
  display: inline-block;
  background: white;
  color: var(--color5) !important;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.features-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 0.95);
}

.feature-card {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.feature-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.feature-title {
  color: white;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.feature-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.feature-link {
  color: white;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  padding-bottom: 2px;
}

.feature-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: white;
  transition: width 0.3s ease;
}

.feature-link:hover::after {
  width: 100%;
}

@media (max-width: 991.98px) {
  .features-section {
    padding: 4rem 0;
  }

  .features-title {
    font-size: 2rem;
  }

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

  .feature-card {
    margin-bottom: 1.5rem;
  }

  .features-button {
    padding: 0.8rem 2rem;
  }
}

/* Pricing Section Styles */
.pricing-section {
  background: linear-gradient(90deg, var(--color5), var(--color6));
  padding: 8rem 0;
  position: relative;
  color: white;
}

.pricing-header {
  margin-bottom: 4rem;
}

.pricing-title {
  color: white;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
}

.pricing-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 60px;
  height: 3px;
  background: white;
  border-radius: 2px;
  transform: translateX(-50%);
}

.pricing-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  font-weight: 300;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  padding: 3rem 2rem;
  height: 100%;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  position: relative;
  margin-bottom: 2rem;
}

.pricing-card.featured {
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.pricing-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-5px);
}

.pricing-card-title {
  color: white;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.pricing-card-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  font-weight: 300;
}

.pricing-card-price {
  color: white;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
}

.pricing-card-button {
  display: block;
  background: white;
  color: var(--color5) !important;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.pricing-card-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 0.95);
}

@media (max-width: 991.98px) {
  .pricing-section {
    padding: 4rem 0;
  }

  .pricing-title {
    font-size: 2rem;
  }

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

  .pricing-card {
    margin-bottom: 2rem;
  }

  .pricing-card.featured {
    transform: scale(1);
  }

  .pricing-card.featured:hover {
    transform: translateY(-5px);
  }

  .pricing-card-button {
    padding: 0.8rem 2rem;
  }
}

/* Contact Section Styles */
.contact-section {
  background: linear-gradient(90deg, var(--color5), var(--color6));
  padding: 8rem 0;
  position: relative;
  color: white;
}

.contact-title {
  color: white;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  text-transform: uppercase;
}

.contact-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 60px;
  height: 3px;
  background: white;
  border-radius: 2px;
}

.contact-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  font-weight: 300;
}

.contact-info {
  margin-bottom: 2rem;
}

.contact-info-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.contact-info-item i {
  font-size: 1.2rem;
  margin-right: 1rem;
  color: white;
  width: 24px;
  text-align: center;
}

.contact-form {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  padding: 3rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.contact-form .form-control {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 1rem;
  margin-bottom: 1.5rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.contact-form .form-control:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: none;
}

.contact-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.contact-form textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.contact-form .btn {
  background: white;
  color: var(--color5) !important;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-form .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 0.95);
}

@media (max-width: 991.98px) {
  .contact-section {
    padding: 4rem 0;
  }

  .contact-title {
    font-size: 2rem;
    text-align: center;
  }

  .contact-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .contact-subtitle {
    font-size: 1rem;
    text-align: center;
  }

  .contact-form {
    padding: 2rem;
    margin-top: 2rem;
  }

  .contact-form .btn {
    width: 100%;
    padding: 0.8rem 2rem;
  }
}

/* Footer Styles */
.footer {
  background: linear-gradient(90deg, var(--color5), var(--color6));
  padding: 3rem 0;
  color: white;
  position: relative;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  position: relative;
}

.footer-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -2px;
  left: 0;
  background-color: white;
  transition: width 0.3s ease;
}

.footer-link:hover {
  color: white;
}

.footer-link:hover::after {
  width: 100%;
}

@media (max-width: 767.98px) {
  .footer {
    padding: 2rem 0;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .footer-links {
    justify-content: center;
  }
}
