.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 {
  padding: 1.5rem 0;
  background: #fff;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
  padding: 1rem 0;
  background: rgba(255, 255, 255, 0.98);
}

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

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

.navbar-collapse {
  width: 100%;
}

.navbar-nav {
  justify-content: center;
  width: 100%;
}

.navbar-nav .nav-link {
  position: relative;
  font-weight: 500;
  padding: 0.5rem 1rem;
  margin: 0 0.2rem;
  color: var(--color5) !important;
  transition: color 0.3s ease;
  font-size: 1.1rem;
}

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

.navbar-nav .nav-link:hover {
  color: var(--color5) !important;
}

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

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

  .navbar-brand {
    width: auto;
    height: auto;
    margin: 0 auto;
  }

  .navbar-brand img {
    height: 40px;
  }

  .navbar-collapse {
    background: white;
    padding: 1rem;
    border-radius: 0.5rem;
    margin-top: 1rem;
    border-top: none;
    position: absolute;
    left: 0;
    right: 0;
    z-index: 1000;
    top: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }

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

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

  .about-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .about-content-side {
    padding-right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .about-feature {
    padding: 1.2rem;
    text-align: left;
    width: 100%;
    max-width: 500px;
  }

  .about-image {
    max-width: 500px;
    margin: 0 auto;
  }

  .about-button {
    margin: 0 auto;
  }
}

/* Hero Section Styles */
.hero-section {
  padding: 120px 0;
  background: var(--color5);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  display: none;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

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

.hero-text {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

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

.hero-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  background: var(--color6);
  color: #fff !important;
}

@media (max-width: 991.98px) {
  .hero-section {
    padding: 80px 0;
  }

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

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

  .hero-button {
    padding: 1rem 2.5rem;
  }
}

/* About Section Styles */
.about-section {
  padding: 100px 0;
  background: #f8f9fa;
  position: relative;
  overflow: hidden;
}

.about-section::before {
  display: none;
}

.about-header {
  position: relative;
  z-index: 1;
  margin-bottom: 4rem;
}

.about-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color5);
  margin-bottom: 1rem;
  text-align: center;
}

.about-text {
  font-size: 1.1rem;
  color: var(--color6);
  margin-bottom: 2rem;
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.about-wrapper {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-content-side {
  padding-right: 2rem;
}

.about-features {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid rgba(var(--color5-rgb), 0.1);
}

.about-feature:hover {
  transform: translateX(10px);
  border-color: var(--color5);
}

.about-feature-icon {
  width: 50px;
  height: 50px;
  background: var(--color5);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-feature-icon i {
  font-size: 1.5rem;
  color: #fff;
}

.about-feature-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color5);
  margin-bottom: 0.5rem;
}

.about-feature-content p {
  color: var(--color6);
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

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

.about-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  background: var(--color6);
  color: #fff !important;
}

.about-image-side {
  position: relative;
}

.about-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

.about-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 100%);
}

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

  .about-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-content-side {
    padding-right: 0;
  }

  .about-feature {
    padding: 1.2rem;
  }

  .about-image {
    max-width: 500px;
    margin: 0 auto;
  }
}

/* Features Section Styles */
.features-section {
  padding: 100px 0;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.features-section::before {
  display: none;
}

.features-header {
  position: relative;
  z-index: 1;
  margin-bottom: 4rem;
}

.features-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color5);
  margin-bottom: 1rem;
  text-align: center;
}

.features-subtitle {
  font-size: 1.1rem;
  color: var(--color6);
  margin-bottom: 2rem;
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.features-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: #fff;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid rgba(var(--color5-rgb), 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: var(--color5);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: var(--color5);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.feature-icon i {
  font-size: 2rem;
  color: #fff;
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color5);
  margin-bottom: 1rem;
}

.feature-text {
  color: var(--color6);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.feature-link {
  color: var(--color5);
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  margin-top: auto;
}

.feature-link:hover {
  color: var(--color6);
  transform: translateX(5px);
}

.features-cta {
  position: relative;
  z-index: 1;
  margin-top: 4rem;
}

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

.features-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  background: var(--color6);
  color: #fff !important;
}

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

  .about-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-content-side {
    padding-right: 0;
  }

  .about-feature {
    padding: 1.2rem;
  }

  .about-image {
    max-width: 500px;
    margin: 0 auto;
  }

  .features-grid {
    gap: 1.5rem;
  }

  .pricing-card.featured {
    transform: none;
  }

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

/* Pricing Section Styles */
.pricing-section {
  padding: 100px 0;
  background: #f8f9fa;
  position: relative;
  overflow: hidden;
}

.pricing-section::before {
  display: none;
}

.pricing-header {
  position: relative;
  z-index: 1;
  margin-bottom: 4rem;
}

.pricing-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color5);
  margin-bottom: 1rem;
  text-align: center;
}

.pricing-subtitle {
  font-size: 1.1rem;
  color: var(--color6);
  margin-bottom: 2rem;
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: center;
}

.pricing-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid rgba(var(--color5-rgb), 0.1);
  position: relative;
  max-width: 380px;
  margin: 0 auto;
  width: 100%;
}

.pricing-card:hover {
  transform: translateY(-10px);
  border-color: var(--color5);
}

.pricing-card.featured {
  border: 2px solid var(--color5);
  transform: scale(1.05);
}

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

.pricing-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--color5);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  z-index: 1;
}

.pricing-image {
  height: 200px;
  overflow: hidden;
}

.pricing-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.pricing-card:hover .pricing-image img {
  transform: scale(1.1);
}

.pricing-card-content {
  padding: 2rem;
  text-align: center;
}

.pricing-card-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color5);
  margin-bottom: 1rem;
  text-align: center;
}

.pricing-card-text {
  color: var(--color6);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.6;
  text-align: center;
}

.pricing-card-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color5);
  margin-bottom: 1.5rem;
  text-align: center;
}

.pricing-card-button {
  display: inline-block;
  padding: 1rem 2rem;
  background: var(--color5);
  color: #fff !important;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  width: 100%;
  text-align: center;
}

.pricing-card-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  background: var(--color6);
  color: #fff !important;
}

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

  .about-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-content-side {
    padding-right: 0;
  }

  .about-feature {
    padding: 1.2rem;
  }

  .about-image {
    max-width: 500px;
    margin: 0 auto;
  }

  .features-grid {
    gap: 1.5rem;
  }

  .pricing-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }

  .pricing-card {
    max-width: 340px;
  }

  .pricing-card.featured {
    transform: none;
  }

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

/* Contact Section Styles */
.contact-section {
  padding: 100px 0;
  background: #f8f9fa;
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  display: none;
}

.contact-header {
  position: relative;
  z-index: 1;
}

.contact-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color5);
  margin-bottom: 1rem;
  text-align: center;
}

.contact-subtitle {
  font-size: 1.1rem;
  color: var(--color6);
  margin-bottom: 3rem;
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact-wrapper {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 2rem;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-info-side {
  background: var(--color5);
  padding: 3rem;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.contact-info-side::before {
  display: none;
}

.contact-info-content {
  position: relative;
  z-index: 1;
}

.contact-info-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
}

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

.contact-info-cards {
  display: grid;
  gap: 1.5rem;
}

.contact-info-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.contact-info-card:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(5px);
}

.contact-info-icon {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon i {
  font-size: 1.2rem;
  color: #fff;
}

.contact-info-details h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: #fff;
}

.contact-info-details p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.contact-form-side {
  padding: 3rem;
}

.contact-form {
  height: 100%;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
  position: relative;
}

.input-group {
  position: relative;
}

.input-group i {
  position: absolute;
  left: 1rem;
  top: 1rem;
  color: var(--color5);
  z-index: 2;
  font-size: 1.2rem;
}

.form-control {
  padding: 1rem 1rem 1rem 3rem;
  border: 1px solid var(--color5);
  border-radius: 10px;
  transition: all 0.3s ease;
  background: #fff;
  font-size: 1rem;
  width: 100%;
}

.form-control:focus {
  border-color: var(--color5);
  box-shadow: 0 0 0 0.2rem rgba(var(--color5-rgb), 0.25);
}

.form-control:focus + i {
  color: var(--color6);
}

textarea.form-control {
  padding-top: 1rem;
  min-height: 150px;
  resize: vertical;
}

textarea.form-control + i {
  top: 1rem;
  transform: none;
}

.form-check {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-check-input {
  width: 1.2rem;
  height: 1.2rem;
  margin: 0;
  border: 2px solid var(--color5);
  cursor: pointer;
}

.form-check-input:checked {
  background-color: var(--color5);
  border-color: var(--color5);
}

.form-check-label {
  color: var(--color6);
  font-size: 0.95rem;
  cursor: pointer;
}

.btn {
  padding: 1rem 2.5rem;
  background: var(--color5);
  color: #fff !important;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  width: 100%;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  background: var(--color6);
  color: #fff !important;
}

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

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

  .contact-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-info-side {
    padding: 2rem;
  }

  .contact-form-side {
    padding: 2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .contact-info-cards {
    gap: 1rem;
  }

  .contact-info-card {
    padding: 0.8rem;
  }

  .contact-info-icon {
    width: 40px;
    height: 40px;
  }
}

/* Footer Styles */
.footer {
  padding: 3rem 0;
  background: var(--color5);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.footer::before {
  display: none;
}

.footer .container {
  position: relative;
  z-index: 1;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.footer-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  position: relative;
  padding-bottom: 2px;
}

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

.footer-link:hover {
  color: #fff;
}

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

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

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

  .footer-links {
    justify-content: center;
    gap: 1.5rem;
  }
}

/* Navbar brand */
.navbar-brand {
  display: inline-block;
  padding: 0;
  margin: 0 auto;
  transition: all 0.3s ease;
}

.navbar-brand img {
  height: 50px;
  width: auto;
  object-fit: contain;
}
