.text-outline {
  color: transparent !important;
  -webkit-text-stroke: 1.5px currentColor;
}
[data-bs-theme=light] .text-outline {
  -webkit-text-stroke: 1.5px #EF476F;
}
[data-bs-theme=dark] .text-outline {
  -webkit-text-stroke: 1.5px #EF476F;
}

.hero-badge-line {
  color: #EF476F;
}
.hero-badge-line .badge-line {
  height: 2px;
  width: 80px;
  background-color: currentColor;
  position: relative;
  display: inline-block;
  vertical-align: middle;
}
.hero-badge-line .badge-line::after {
  content: "";
  position: absolute;
  right: -6px;
  top: -3px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: currentColor;
}

.btn-hero-accent {
  background-color: #5B146F !important;
  color: #fff !important;
  padding: 0.75rem 2rem !important;
  transition: all 0.2s ease-in-out !important;
}
.btn-hero-accent:hover {
  background-color: rgb(119.3419847328, 26.2290076336, 145.5709923664) !important;
  transform: translateY(-2px);
}
.btn-hero-accent:active {
  transform: translateY(0);
}

.nav-switch-btn {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(128, 128, 128, 0.2);
  background: transparent;
  color: inherit;
  transition: all 0.2s ease;
}
.nav-switch-btn:hover {
  background-color: rgba(128, 128, 128, 0.1);
  border-color: rgba(128, 128, 128, 0.4);
  transform: scale(1.05);
}

.navbar-nav .nav-link {
  position: relative;
}
.navbar-nav .nav-link.active::before {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 10%;
  width: 80%;
  height: 3px;
  background-color: #EF476F;
  border-radius: 2px;
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
  }
  .navbar-expand-lg .navbar-nav {
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }
  .navbar-expand-lg .navbar-nav .nav-item {
    margin-bottom: 0.35rem;
  }
  .navbar-expand-lg .navbar-collapse > .d-flex {
    width: 100%;
    justify-content: center;
    margin-top: 0.5rem;
  }
}
[data-bs-theme=dark] body {
  color: #FAFAFA !important;
}
[data-bs-theme=dark] .navbar-brand {
  color: #FAFAFA !important;
}
[data-bs-theme=dark] .navbar-nav .nav-link {
  color: rgba(250, 250, 250, 0.75) !important;
}
[data-bs-theme=dark] .navbar-nav .nav-link:hover {
  color: #FAFAFA !important;
}
[data-bs-theme=dark] .navbar-nav .nav-link.active {
  color: #EF476F !important;
}
[data-bs-theme=dark] .text-muted {
  color: rgba(250, 250, 250, 0.6) !important;
}
[data-bs-theme=dark] a {
  color: #FAFAFA !important;
}
[data-bs-theme=dark] a:hover {
  color: #5B146F !important;
}

.reveal-up {
  opacity: 0;
  transform: translate(0, 40px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.reveal-up.revealed {
  opacity: 1;
  transform: translate(0, 0);
}

.reveal-title {
  position: relative;
  display: inline-block;
  opacity: 0;
  transform: translate(0, 20px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.reveal-title.revealed {
  opacity: 1;
  transform: translate(0, 0);
}

.hero-image-wrapper {
  width: 100%;
  aspect-ratio: 16/11;
  overflow: hidden;
  border-radius: 1.5rem;
}
.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s ease-out !important;
}

.carousel-item.active .hero-image-wrapper img {
  transform: scale(1.05);
}

.hero-pattern-dots {
  position: absolute;
  top: -15px;
  left: -15px;
  width: 100px;
  height: 100px;
  background-image: radial-gradient(rgba(239, 71, 111, 0.4) 1.5px, transparent 1.5px);
  background-size: 12px 12px;
  z-index: -1;
}

#heroCarousel .carousel-indicators [data-bs-target] {
  transition: all 0.3s ease;
}
#heroCarousel .carousel-indicators [data-bs-target].active {
  transform: scale(1.3);
  background-color: #EF476F;
  border-color: #EF476F;
}

[data-bs-theme=light] #heroCarousel .carousel-indicators [data-bs-target] {
  border-color: rgba(0, 0, 0, 0.18) !important;
  background-color: rgba(0, 0, 0, 0.16) !important;
}
[data-bs-theme=light] #heroCarousel .carousel-indicators [data-bs-target].active {
  background-color: #5B146F !important;
  border-color: #5B146F !important;
}

[data-bs-theme=dark] #heroCarousel .carousel-indicators [data-bs-target] {
  border-color: rgba(255, 255, 255, 0.35) !important;
  background-color: rgba(255, 255, 255, 0.22) !important;
}
[data-bs-theme=dark] #heroCarousel .carousel-indicators [data-bs-target].active {
  background-color: #EF476F !important;
  border-color: #EF476F !important;
}

.py-6 {
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}

.py-7 {
  padding-top: 7rem !important;
  padding-bottom: 7rem !important;
}

.reveal-left {
  opacity: 0;
  transform: translate(-40px, 0);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.reveal-left.revealed {
  opacity: 1;
  transform: translate(0, 0);
}

.reveal-right {
  opacity: 0;
  transform: translate(40px, 0);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.reveal-right.revealed {
  opacity: 1;
  transform: translate(0, 0);
}

.reveal-fade {
  opacity: 0;
  transition: opacity 1s ease;
}
.reveal-fade.revealed {
  opacity: 1;
}

.reveal-delay-1 {
  transition-delay: 0.1s !important;
}

.reveal-delay-2 {
  transition-delay: 0.2s !important;
}

.reveal-delay-3 {
  transition-delay: 0.3s !important;
}

.reveal-delay-4 {
  transition-delay: 0.4s !important;
}

.reveal-delay-5 {
  transition-delay: 0.5s !important;
}

.reveal-delay-6 {
  transition-delay: 0.6s !important;
}

.img-grayscale {
  transition: filter 0.4s ease, transform 0.4s ease;
}

[data-bs-theme=dark] body {
  background-color: #1F1832 !important;
  color: #FAFAFA !important;
}
[data-bs-theme=dark] .bg-body {
  background-color: #1F1832 !important;
}
[data-bs-theme=dark] .bg-body-tertiary {
  background-color: #2E244A !important;
}
[data-bs-theme=dark] .card, [data-bs-theme=dark] .service-card, [data-bs-theme=dark] .project-card, [data-bs-theme=dark] .team-card, [data-bs-theme=dark] .blog-card, [data-bs-theme=dark] .event-item, [data-bs-theme=dark] .partner-logo-wrapper {
  box-shadow: none !important;
  background-color: #2E244A !important;
}

.service-card {
  transition: border-color 0.3s ease, background-color 0.3s ease;
}
.service-card .service-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(239, 71, 111, 0.08);
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.service-card .service-link {
  color: #5B146F;
  transition: color 0.3s ease;
}
.service-card .service-link i {
  transition: transform 0.3s ease;
}
.service-card:hover {
  border-color: rgba(239, 71, 111, 0.4) !important;
}
.service-card:hover .service-icon {
  background-color: rgba(239, 71, 111, 0.15);
  transform: scale(1.05);
}
.service-card:hover .service-link {
  color: #EF476F;
}
.service-card:hover .service-link i {
  transform: translateX(4px);
}

.project-card {
  height: 100%;
}
.project-card .project-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(31, 24, 50, 0.95) 0%, rgba(31, 24, 50, 0.4) 70%, transparent 100%);
  z-index: 2;
  transition: background 0.3s ease;
}
.project-card .project-arrow-btn {
  width: 45px;
  height: 45px;
  position: absolute;
  bottom: 24px;
  right: 24px;
  background-color: rgba(250, 250, 250, 0.1);
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}
.project-card:hover .img-grayscale {
  transform: scale(1.06);
}
.project-card:hover .project-arrow-btn {
  background-color: #EF476F;
  border-color: #EF476F !important;
  transform: rotate(45deg);
}

.video-play-btn {
  background-color: rgba(250, 250, 250, 0.1);
  backdrop-filter: blur(5px);
  box-shadow: none !important;
}
.video-play-btn:hover {
  background-color: #EF476F;
  border-color: #EF476F !important;
  transform: scale(1.08);
}

.team-card .team-image-wrapper {
  position: relative;
}
.team-card:hover .img-grayscale {
  transform: scale(1.04);
}

.partner-logo-wrapper {
  min-height: 80px;
  transition: all 0.3s ease;
}
.partner-logo-wrapper:hover {
  border-color: rgba(239, 71, 111, 0.3) !important;
}
.partner-logo-wrapper:hover img {
  filter: grayscale(0%);
  opacity: 1 !important;
}

.partner-marquee .partner-slide {
  min-width: 180px;
}

.blog-card .blog-image-wrapper img {
  transition: transform 0.4s ease;
}
.blog-card:hover .blog-image-wrapper img {
  transform: scale(1.05);
}

#testimonialCarousel .carousel-indicators [data-bs-target] {
  width: 8px !important;
  height: 8px !important;
  border-radius: 50% !important;
  margin-left: 5px !important;
  margin-right: 5px !important;
  border: none !important;
  background-color: rgba(250, 250, 250, 0.2) !important;
}
#testimonialCarousel .carousel-indicators [data-bs-target].active {
  background-color: #EF476F !important;
  transform: scale(1.2);
}

.dropdown-menu {
  border-radius: 0.75rem !important;
  border: 1px solid rgba(128, 128, 128, 0.15) !important;
  box-shadow: none !important;
  padding: 0.75rem 0 !important;
}
[data-bs-theme=dark] .dropdown-menu {
  background-color: #2E244A !important;
  border-color: rgba(250, 250, 250, 0.08) !important;
}
.dropdown-menu .dropdown-item {
  padding: 0.5rem 1.5rem !important;
  font-weight: 500;
  transition: all 0.2s ease;
}
.dropdown-menu .dropdown-item:hover {
  background-color: rgba(239, 71, 111, 0.08) !important;
  color: #EF476F !important;
}
.dropdown-menu .dropdown-item.active {
  background-color: #EF476F !important;
  color: #fff !important;
}
[data-bs-theme=dark] .dropdown-menu .dropdown-item {
  color: rgba(250, 250, 250, 0.8) !important;
}
[data-bs-theme=dark] .dropdown-menu .dropdown-item:hover {
  color: #EF476F !important;
  background-color: rgba(239, 71, 111, 0.1) !important;
}
[data-bs-theme=dark] .dropdown-menu .dropdown-item.active {
  color: #fff !important;
  background-color: #EF476F !important;
}
.dropdown-menu .dropdown-divider {
  border-color: rgba(128, 128, 128, 0.15) !important;
}
[data-bs-theme=dark] .dropdown-menu .dropdown-divider {
  border-color: rgba(250, 250, 250, 0.08) !important;
}

.footer {
  background-color: #1F1832 !important;
  color: rgba(250, 250, 250, 0.6) !important;
}
.footer .social-icon {
  transition: all 0.3s ease !important;
}
.footer .social-icon:hover {
  background-color: #EF476F !important;
  border-color: #EF476F !important;
  transform: translateY(-3px) scale(1.05);
}
.footer .hover-link {
  transition: all 0.2s ease;
  display: inline-block;
}
.footer .hover-link:hover {
  color: #EF476F !important;
  transform: translateX(4px);
}
.footer .newsletter-form {
  border-color: rgba(128, 128, 128, 0.2) !important;
}
[data-bs-theme=dark] .footer .newsletter-form {
  background-color: rgba(46, 36, 74, 0.6) !important;
  border-color: rgba(250, 250, 250, 0.08) !important;
}
.footer .newsletter-form .form-control {
  color: inherit !important;
}
.footer .newsletter-form .form-control::placeholder {
  color: rgba(128, 128, 128, 0.7);
}
[data-bs-theme=dark] .footer .newsletter-form .form-control {
  color: #FAFAFA !important;
}
[data-bs-theme=dark] .footer .newsletter-form .form-control::placeholder {
  color: rgba(250, 250, 250, 0.4);
}
.footer .newsletter-form .btn-newsletter {
  background-color: #EF476F !important;
  border: none !important;
  transition: all 0.2s ease;
}
.footer .newsletter-form .btn-newsletter:hover {
  background-color: rgb(235.736, 33.464, 81.624) !important;
  transform: translateY(-50%) scale(1.05) !important;
}

.fs-7 {
  font-size: 0.85rem !important;
}

.fs-8 {
  font-size: 0.7rem !important;
}

[data-bs-theme=dark] .logo-light-theme {
  display: none !important;
}
[data-bs-theme=dark] .logo-dark-theme {
  display: inline-block !important;
}

[data-bs-theme=light] .logo-light-theme {
  display: inline-block !important;
}
[data-bs-theme=light] .logo-dark-theme {
  display: none !important;
}

.event-card-link {
  transition: all 0.3s ease;
}
.event-card-link .event-card {
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.event-card-link .event-card-image img {
  transition: filter 0.5s ease, transform 0.5s ease;
}
.event-card-link .event-arrow {
  transition: all 0.3s ease;
}
.event-card-link .event-cta-text {
  transition: transform 0.3s ease;
}
.event-card-link:hover .event-card {
  border-color: rgba(239, 71, 111, 0.35) !important;
}
.event-card-link:hover .event-accent-bar {
  transform: scaleX(1) !important;
}
.event-card-link:hover .event-card-image img {
  filter: grayscale(0%) !important;
  transform: scale(1.06);
}
.event-card-link:hover .event-arrow {
  background-color: #EF476F !important;
  border-color: #EF476F !important;
  transform: rotate(-45deg);
}
.event-card-link:hover .event-arrow i {
  color: #fff !important;
}
.event-card-link:hover .event-cta-text {
  transform: translateX(4px);
}

.event-card-title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.service-detail-content p {
  margin-bottom: 1.5rem;
  line-height: 1.7;
  color: rgba(250, 250, 250, 0.7);
}
.service-detail-content h3, .service-detail-content h4, .service-detail-content h5 {
  color: #FAFAFA !important;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.service-detail-content ul {
  list-style: none !important;
  padding-left: 0 !important;
  margin-bottom: 1.5rem;
}
.service-detail-content ul li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  color: rgba(250, 250, 250, 0.85);
  font-size: 0.95rem;
}
.service-detail-content ul li::before {
  content: "\f26a";
  font-family: "bootstrap-icons" !important;
  position: absolute;
  left: 0;
  top: 2px;
  color: #EF476F;
  font-weight: 900;
  font-size: 1rem;
}

.list-group-item-action:hover {
  color: #EF476F !important;
  padding-left: 6px !important;
  background-color: rgba(239, 71, 111, 0.04) !important;
}

.hero-section {
  position: relative;
  z-index: 1;
  background-color: transparent;
}

.hero-bg-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
  filter: blur(100px);
  opacity: 0.35;
}
.hero-bg-glow .glow-orb {
  position: absolute;
  border-radius: 50%;
  mix-blend-mode: screen;
  animation: orbFloat 25s ease-in-out infinite alternate;
}
.hero-bg-glow .orb-1 {
  top: -10%;
  left: 10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(239, 71, 111, 0.4) 0%, transparent 80%);
  animation-duration: 20s;
}
.hero-bg-glow .orb-2 {
  bottom: -10%;
  right: 10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(91, 20, 111, 0.35) 0%, transparent 80%);
  animation-duration: 28s;
}
.hero-bg-glow .orb-3 {
  top: 30%;
  left: 40%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(86, 154, 78, 0.25) 0%, transparent 80%);
  animation-duration: 24s;
}

.hero-bg-grid {
  --grid-color: rgba(0, 0, 0, 0.08);
}
[data-bs-theme=dark] .hero-bg-grid {
  --grid-color: rgba(255, 255, 255, 0.08);
}
.hero-bg-grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  pointer-events: none;
  background-image: radial-gradient(var(--grid-color) 1.5px, transparent 1.5px);
  background-size: 30px 30px;
  background-position: center top;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, #000 60%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, #000 60%, transparent 100%);
}

@keyframes orbFloat {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(40px, -20px) scale(1.1);
  }
  100% {
    transform: translate(-20px, 30px) scale(0.95);
  }
}
.hero-image-wrapper {
  border: 1px solid rgba(250, 250, 250, 0.08);
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
.hero-image-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 35px 70px -10px rgba(0, 0, 0, 0.6), 0 0 50px -5px rgba(239, 71, 111, 0.25);
  border-color: rgba(239, 71, 111, 0.3);
}

.btn-hero-accent {
  background-color: #5B146F !important;
  color: #fff !important;
  padding: 0.85rem 2.2rem !important;
  font-size: 1rem !important;
  border: 1px solid rgba(250, 250, 250, 0.15) !important;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1) !important;
  box-shadow: 0 8px 24px -6px rgba(91, 20, 111, 0.4);
  position: relative;
  overflow: hidden;
}
.btn-hero-accent::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(250, 250, 250, 0.2), transparent);
  transition: 0.6s;
}
.btn-hero-accent:hover {
  background-color: rgb(108.713740458, 23.893129771, 132.606870229) !important;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px -4px rgba(91, 20, 111, 0.5), 0 0 15px rgba(91, 20, 111, 0.2);
  border-color: rgba(250, 250, 250, 0.3) !important;
}
.btn-hero-accent:hover::before {
  left: 100%;
}

.hero-stats-card .divider-v {
  width: 1px;
  height: 35px;
  background-color: rgba(250, 250, 250, 0.12);
}

.avatar-group {
  margin-right: 4px;
}
.avatar-group .avatar-pill {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #1F1832;
  overflow: hidden;
  margin-right: -10px;
  background-color: rgba(250, 250, 250, 0.1);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  display: inline-block;
  vertical-align: middle;
}
.avatar-group .avatar-pill img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.avatar-group .avatar-pill:hover {
  transform: translateY(-4px) scale(1.1);
  z-index: 5;
  position: relative;
}
.avatar-group .avatar-pill.avatar-more {
  background-color: #5B146F;
  color: #FAFAFA;
  font-size: 0.75rem;
  border-color: rgba(250, 250, 250, 0.15);
  line-height: 32px;
  text-align: center;
}

.tech-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.45rem 1rem;
  border-radius: 100px;
  background-color: rgba(250, 250, 250, 0.03);
  border: 1px solid rgba(250, 250, 250, 0.08);
  color: rgba(250, 250, 250, 0.85);
  font-size: 0.8rem;
  font-weight: 500;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}
.tech-badge i {
  font-size: 0.95rem;
  transition: transform 0.3s ease;
}
.tech-badge:hover {
  background-color: rgba(250, 250, 250, 0.08);
  border-color: rgba(239, 71, 111, 0.3);
  color: #FAFAFA;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 0 10px rgba(239, 71, 111, 0.1);
}
.tech-badge:hover i {
  transform: scale(1.15);
}

[data-bs-theme=light] .text-white:not(.btn):not(.badge):not(.nav-link) {
  --bs-text-opacity: 1;
  color: rgba(31, 24, 50, var(--bs-text-opacity)) !important;
}
[data-bs-theme=light] .text-white-50:not(.btn):not(.badge):not(.nav-link) {
  color: rgba(31, 24, 50, 0.5) !important;
}
[data-bs-theme=light] .border-white {
  border-color: rgba(0, 0, 0, 0.1) !important;
}
[data-bs-theme=light] .breadcrumb-section:not([style*=background]) .text-white {
  color: #1F1832 !important;
}
[data-bs-theme=light] .breadcrumb-section:not([style*=background]) .text-white-50 {
  color: rgba(31, 24, 50, 0.6) !important;
}
[data-bs-theme=light] .breadcrumb-section:not([style*=background]) .breadcrumb-item.active {
  color: #1F1832 !important;
}
[data-bs-theme=light] .tech-badge {
  background-color: rgba(31, 24, 50, 0.05) !important;
  border: 1px solid rgba(31, 24, 50, 0.12) !important;
  color: rgba(31, 24, 50, 0.85) !important;
}
[data-bs-theme=light] .tech-badge:hover {
  background-color: rgba(31, 24, 50, 0.1) !important;
  border-color: rgba(91, 20, 111, 0.4) !important;
  color: #000 !important;
}
[data-bs-theme=light] .hero-stats-card .divider-v {
  background-color: rgba(31, 24, 50, 0.15) !important;
}
[data-bs-theme=light] .form-control, [data-bs-theme=light] .form-select {
  background-color: #ffffff !important;
  border-color: rgba(0, 0, 0, 0.15) !important;
  color: #1F1832 !important;
}
[data-bs-theme=light] .form-control::placeholder, [data-bs-theme=light] .form-select::placeholder {
  color: rgba(0, 0, 0, 0.4) !important;
}
[data-bs-theme=light] .form-control:focus, [data-bs-theme=light] .form-select:focus {
  border-color: #5B146F !important;
  background-color: #ffffff !important;
  color: #1F1832 !important;
  box-shadow: 0 0 0 0.25rem rgba(91, 20, 111, 0.15) !important;
}
[data-bs-theme=light] .filter-btn.active, [data-bs-theme=light] .filter-btn.text-white {
  color: #1F1832 !important;
}
[data-bs-theme=light] .vr.bg-white {
  background-color: rgba(0, 0, 0, 0.2) !important;
}
[data-bs-theme=light] .btn-outline-light {
  border-color: rgba(0, 0, 0, 0.15) !important;
  color: #1F1832 !important;
}
[data-bs-theme=light] .btn-outline-light:hover {
  background-color: #1F1832 !important;
  border-color: #1F1832 !important;
  color: #ffffff !important;
}
[data-bs-theme=light] .card, [data-bs-theme=light] .service-card, [data-bs-theme=light] .project-card, [data-bs-theme=light] .team-card, [data-bs-theme=light] .blog-card, [data-bs-theme=light] .event-item, [data-bs-theme=light] .partner-logo-wrapper, [data-bs-theme=light] .about-card, [data-bs-theme=light] .accordion-item {
  border-color: rgba(0, 0, 0, 0.08) !important;
  background-color: #f0f0f3 !important;
}
[data-bs-theme=light] .accordion-button.text-white {
  color: #1F1832 !important;
}
[data-bs-theme=light] .service-detail-content p {
  color: rgba(31, 24, 50, 0.7) !important;
}
[data-bs-theme=light] .service-detail-content h3, [data-bs-theme=light] .service-detail-content h4, [data-bs-theme=light] .service-detail-content h5 {
  color: #1F1832 !important;
}
[data-bs-theme=light] .service-detail-content ul li {
  color: rgba(31, 24, 50, 0.85) !important;
}
[data-bs-theme=light] .footer.text-white, [data-bs-theme=light] .footer .text-white,
[data-bs-theme=light] .project-info.text-white,
[data-bs-theme=light] .project-info .text-white,
[data-bs-theme=light] .video-play-btn.text-white,
[data-bs-theme=light] .video-play-btn .text-white,
[data-bs-theme=light] .breadcrumb-section[style*=background].text-white,
[data-bs-theme=light] .breadcrumb-section[style*=background] .text-white {
  color: #FAFAFA !important;
}
[data-bs-theme=light] .footer.text-white-50, [data-bs-theme=light] .footer .text-white-50,
[data-bs-theme=light] .project-info.text-white-50,
[data-bs-theme=light] .project-info .text-white-50,
[data-bs-theme=light] .video-play-btn.text-white-50,
[data-bs-theme=light] .video-play-btn .text-white-50,
[data-bs-theme=light] .breadcrumb-section[style*=background].text-white-50,
[data-bs-theme=light] .breadcrumb-section[style*=background] .text-white-50 {
  color: rgba(250, 250, 250, 0.5) !important;
}
[data-bs-theme=light] .footer.border-white, [data-bs-theme=light] .footer .border-white,
[data-bs-theme=light] .project-info.border-white,
[data-bs-theme=light] .project-info .border-white,
[data-bs-theme=light] .video-play-btn.border-white,
[data-bs-theme=light] .video-play-btn .border-white,
[data-bs-theme=light] .breadcrumb-section[style*=background].border-white,
[data-bs-theme=light] .breadcrumb-section[style*=background] .border-white {
  border-color: rgba(250, 250, 250, 0.15) !important;
}
[data-bs-theme=light] .footer.btn-outline-light, [data-bs-theme=light] .footer .btn-outline-light,
[data-bs-theme=light] .project-info.btn-outline-light,
[data-bs-theme=light] .project-info .btn-outline-light,
[data-bs-theme=light] .video-play-btn.btn-outline-light,
[data-bs-theme=light] .video-play-btn .btn-outline-light,
[data-bs-theme=light] .breadcrumb-section[style*=background].btn-outline-light,
[data-bs-theme=light] .breadcrumb-section[style*=background] .btn-outline-light {
  border-color: rgba(250, 250, 250, 0.2) !important;
  color: #FAFAFA !important;
}
[data-bs-theme=light] .footer.btn-outline-light:hover, [data-bs-theme=light] .footer .btn-outline-light:hover,
[data-bs-theme=light] .project-info.btn-outline-light:hover,
[data-bs-theme=light] .project-info .btn-outline-light:hover,
[data-bs-theme=light] .video-play-btn.btn-outline-light:hover,
[data-bs-theme=light] .video-play-btn .btn-outline-light:hover,
[data-bs-theme=light] .breadcrumb-section[style*=background].btn-outline-light:hover,
[data-bs-theme=light] .breadcrumb-section[style*=background] .btn-outline-light:hover {
  background-color: #FAFAFA !important;
  border-color: #FAFAFA !important;
  color: #1F1832 !important;
}
[data-bs-theme=light] .footer {
  color: rgba(250, 250, 250, 0.6) !important;
}
[data-bs-theme=light] .footer h4, [data-bs-theme=light] .footer h5, [data-bs-theme=light] .footer h6 {
  color: #FAFAFA !important;
}
[data-bs-theme=light] .footer .text-muted {
  color: rgba(250, 250, 250, 0.6) !important;
}
[data-bs-theme=light] .footer a {
  color: rgba(250, 250, 250, 0.6) !important;
}
[data-bs-theme=light] .footer a:hover {
  color: #EF476F !important;
}
[data-bs-theme=light] .footer a.text-primary {
  color: #EF476F !important;
}
[data-bs-theme=light] .footer .hover-link {
  color: rgba(250, 250, 250, 0.6) !important;
}
[data-bs-theme=light] .footer .hover-link:hover {
  color: #EF476F !important;
}
[data-bs-theme=light] .footer .newsletter-form {
  background-color: rgba(46, 36, 74, 0.6) !important;
  border-color: rgba(250, 250, 250, 0.08) !important;
}
[data-bs-theme=light] .footer .newsletter-form .form-control {
  color: #FAFAFA !important;
  background-color: transparent !important;
}
[data-bs-theme=light] .footer .newsletter-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.5) !important;
}
[data-bs-theme=light] .footer .social-icon {
  color: #FAFAFA !important;
  border-color: rgba(250, 250, 250, 0.2) !important;
}
[data-bs-theme=light] .footer .social-icon i {
  color: #FAFAFA !important;
}
[data-bs-theme=light] .footer .social-icon:hover {
  background-color: #EF476F !important;
  border-color: #EF476F !important;
  color: #FAFAFA !important;
}
[data-bs-theme=light] .footer .border-white {
  border-color: rgba(250, 250, 250, 0.15) !important;
}
[data-bs-theme=light] .footer .border-opacity-5 {
  --bs-border-opacity: 0.05 !important;
}
[data-bs-theme=light] .cta-bottom {
  position: relative;
  overflow: hidden;
  min-height: 380px;
}
[data-bs-theme=light] .cta-bottom::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(31, 24, 50, 0.65);
  mix-blend-mode: multiply;
}
[data-bs-theme=light] .cta-bottom .container {
  position: relative;
  z-index: 1;
}
[data-bs-theme=light] .cta-bottom h6 {
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250, 250, 250, 0.85) !important;
  font-size: 0.85rem;
}
[data-bs-theme=light] .cta-bottom h2 {
  color: #FAFAFA !important;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
}
[data-bs-theme=light] .cta-bottom p {
  color: rgba(250, 250, 250, 0.8) !important;
  max-width: 720px;
  margin: 0 auto 1.5rem;
}
[data-bs-theme=light] .cta-bottom .btn-outline-light {
  border-color: rgba(255, 255, 255, 0.9) !important;
  color: #ffffff !important;
}
[data-bs-theme=light] .cta-bottom .btn-outline-light:hover {
  background-color: #ffffff !important;
  color: #1F1832 !important;
}

/* Force CTA styles to be identical regardless of data-bs-theme */
[data-bs-theme=dark] .cta-bottom,
[data-bs-theme=light] .cta-bottom,
.cta-bottom {
  min-height: 380px !important;
  position: relative !important;
  overflow: hidden !important;
  background-size: cover !important;
  background-position: center !important;
}

[data-bs-theme=dark] .cta-bottom::before,
[data-bs-theme=light] .cta-bottom::before,
.cta-bottom::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background: rgba(31, 24, 50, 0.65) !important;
  mix-blend-mode: multiply !important;
}

[data-bs-theme=dark] .cta-bottom h2,
[data-bs-theme=light] .cta-bottom h2,
.cta-bottom h2 {
  font-size: clamp(2rem, 4vw, 3.5rem) !important;
}