body {
  font-family: "Inter", sans-serif;
  color: #141B2D;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6, .heading-font {
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  color: #0A0F1E;
  letter-spacing: -0.02em;
}

.text-accent {
  color: #06B6D4 !important;
}

.text-gradient {
  background: linear-gradient(135deg, #06B6D4 0%, #0891B2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.eyebrow {
  display: block;
  width: fit-content;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #06B6D4;
  background: rgba(6, 182, 212, 0.08);
  border: 1px solid rgba(6, 182, 212, 0.22);
  border-radius: 100px;
  padding: 0.4rem 1.1rem;
  margin-bottom: 1rem;
}

.section-header {
  display: block;
}

.text-center .eyebrow,
.text-center .section-title {
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  position: relative;
  display: block;
  width: fit-content;
  margin-bottom: 2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 48px;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(135deg, #06B6D4 0%, #0891B2 100%);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-title.text-center::after {
  left: 50%;
  transform: translateX(-50%);
}

.section-lead {
  color: #5a6478;
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 560px;
}

.section-lead.text-center {
  margin-left: auto;
  margin-right: auto;
}

.btn {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  border-radius: 100px;
  padding: 0.75rem 1.75rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  letter-spacing: 0.01em;
}

.btn-accent {
  background: linear-gradient(135deg, #06B6D4 0%, #0891B2 100%);
  color: #0A0F1E;
  border: none;
  box-shadow: 0 4px 16px rgba(6, 182, 212, 0.3);
}
.btn-accent:hover {
  background: linear-gradient(135deg, rgb(5.1577981651, 156.4532110092, 182.2422018349) 0%, rgb(6.6838709677, 121.1451612903, 148.7161290323) 100%);
  color: #0A0F1E;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(6, 182, 212, 0.35);
}
.btn-accent:active {
  transform: translateY(0);
}

.btn-outline-light {
  border-radius: 100px;
  border-width: 1.5px;
  backdrop-filter: blur(4px);
}
.btn-outline-light:hover {
  color: #0A0F1E;
  background-color: #ffffff;
  border-color: #ffffff;
}

.btn-outline-dark {
  border-radius: 100px;
  border-width: 1.5px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-outline-dark:hover {
  background: #0A0F1E;
  border-color: #0A0F1E;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10, 15, 30, 0.1);
}

.btn-primary.bg-primary {
  border-radius: 100px;
  border: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-primary.bg-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10, 15, 30, 0.1);
  background-color: rgb(20.2, 30.3, 60.6) !important;
}

.btn i.arrow-icon {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn:hover i.arrow-icon {
  transform: translateX(5px);
}

.service-card {
  background: #ffffff;
  padding: 2rem 1.75rem;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(10, 15, 30, 0.06);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(10, 15, 30, 0.06);
  height: 100%;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(135deg, #06B6D4 0%, #0891B2 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-card .icon-wrapper {
  width: 56px;
  height: 56px;
  background: rgba(6, 182, 212, 0.1);
  color: #06B6D4;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-card h4 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  font-weight: 700;
}
.service-card p {
  color: #64748b;
  margin-bottom: 0;
  font-size: 0.9rem;
  line-height: 1.65;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(10, 15, 30, 0.14);
  border-color: rgba(6, 182, 212, 0.2);
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-card:hover .icon-wrapper {
  background: linear-gradient(135deg, #06B6D4 0%, #0891B2 100%);
  color: #0A0F1E;
  box-shadow: 0 4px 16px rgba(6, 182, 212, 0.35);
}

.project-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
  border: 1px solid rgba(10, 15, 30, 0.06);
  box-shadow: 0 2px 8px rgba(10, 15, 30, 0.06);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.project-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.project-card .project-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.5rem 1.5rem;
  background: linear-gradient(to top, rgba(10, 15, 30, 0.97) 0%, rgba(10, 15, 30, 0.6) 55%, transparent 100%);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.project-card .project-overlay h4 {
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}
.project-card .project-overlay p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.82rem;
  margin-bottom: 0;
  letter-spacing: 0.02em;
}
.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(10, 15, 30, 0.14);
}
.project-card:hover img {
  transform: scale(1.06);
}

.stat-box {
  text-align: center;
  padding: 2rem 1.25rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.stat-box:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(6, 182, 212, 0.35);
  transform: translateY(-4px);
}
.stat-box .stat-value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.15rem;
  margin-bottom: 0.5rem;
}
.stat-box .stat-value .stat-number {
  margin-bottom: 0;
}
.stat-box .stat-suffix {
  font-family: "Outfit", sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  background: linear-gradient(135deg, #06B6D4 0%, #0891B2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-box .stat-number {
  font-family: "Outfit", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, #06B6D4 0%, #0891B2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.03em;
}
.stat-box .stat-title {
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 2px;
  font-weight: 600;
}

.about-experience-badge {
  position: absolute;
  bottom: -1.25rem;
  left: 1.5rem;
  z-index: 2;
  flex-direction: column;
  align-items: flex-start;
  background: linear-gradient(135deg, #06B6D4 0%, #0891B2 100%);
  color: #0A0F1E;
  padding: 1.1rem 1.4rem;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(6, 182, 212, 0.35);
  line-height: 1.2;
  min-width: 120px;
}
.about-experience-badge h3 {
  color: #0A0F1E;
  font-weight: 800;
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.about-experience-badge p {
  color: #0A0F1E;
  font-weight: 600;
  font-size: 0.8rem;
  line-height: 1.3;
  white-space: nowrap;
}

.about-img-wrap {
  margin-bottom: 1.5rem;
}

.about-img-frame {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(10, 15, 30, 0.1);
  border: 1px solid rgba(10, 15, 30, 0.06);
}
.about-img-frame img, .about-img-frame .about-placeholder {
  border-radius: 0;
}

/* Navbar */
.navbar-custom {
  background-color: transparent;
  padding: 1.25rem 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.navbar-custom .navbar-brand {
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  color: #ffffff !important;
  font-size: 1.4rem;
  letter-spacing: 2px;
}
.navbar-custom .navbar-brand span {
  color: #06B6D4;
}
.navbar-custom .nav-link {
  color: rgba(255, 255, 255, 0.85) !important;
  font-weight: 500;
  font-size: 0.9rem;
  margin: 0 0.35rem;
  padding: 0.5rem 0.85rem !important;
  border-radius: 100px;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.navbar-custom .nav-link:hover {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.08);
}
.navbar-custom .nav-link.active {
  color: #ffffff !important;
  background: rgba(6, 182, 212, 0.15);
}
.navbar-custom .nav-link::after {
  display: none;
}
.navbar-custom.scrolled {
  background: rgba(10, 15, 30, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(6, 182, 212, 0.12);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}
@media (max-width: 991px) {
  .navbar-custom {
    background: rgba(10, 15, 30, 0.95);
    backdrop-filter: blur(12px);
  }
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 640px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(6, 182, 212, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(6, 182, 212, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  z-index: 1;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}
.hero-section .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 15, 30, 0.95) 0%, rgba(10, 15, 30, 0.78) 55%, rgba(10, 15, 30, 0.88) 100%);
  z-index: 1;
}
.hero-section .hero-overlay::after {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(6, 182, 212, 0.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero-section .container {
  position: relative;
  z-index: 2;
}
.hero-section .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(6, 182, 212, 0.12);
  border: 1px solid rgba(6, 182, 212, 0.3);
  color: #06B6D4;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 0.45rem 1.1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}
.hero-section .hero-badge .pulse-dot {
  width: 8px;
  height: 8px;
  background: #06B6D4;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.hero-section .hero-title {
  color: #ffffff;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
}
.hero-section .hero-lead {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  max-width: 580px;
  line-height: 1.75;
}
.hero-section .hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.5rem;
  animation: bounce 2s infinite;
  text-decoration: none;
}
.hero-section .hero-scroll:hover {
  color: #06B6D4;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.85);
  }
}
@keyframes bounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(8px);
  }
}
/* Stats Section */
.stats-section {
  background-image: url("https://images.unsplash.com/photo-1451187580459-43490279c0fa?q=80&w=1931&auto=format&fit=crop");
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  position: relative;
  color: #ffffff;
}
.stats-section .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 15, 30, 0.94) 0%, rgba(10, 15, 30, 0.88) 100%);
}
.stats-section .container {
  position: relative;
  z-index: 2;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #0A0F1E 0%, #0c1a35 50%, #070b16 100%);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(6, 182, 212, 0.12) 0%, transparent 60%);
  pointer-events: none;
}
.cta-section .container {
  position: relative;
  z-index: 1;
}
.cta-section h2 {
  color: #ffffff;
  font-weight: 800;
  letter-spacing: -0.03em;
}

/* Footer */
.footer-custom {
  background: #141B2D;
  color: #94a3b8;
  padding: 5rem 0 2rem;
  position: relative;
}
.footer-custom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.5), transparent);
}
.footer-custom h5 {
  color: #ffffff;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.footer-custom ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-custom ul li {
  margin-bottom: 0.75rem;
}
.footer-custom ul li a {
  color: #94a3b8;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 0.9rem;
}
.footer-custom ul li a:hover {
  color: #06B6D4;
  padding-left: 6px;
}
.footer-custom .footer-bottom {
  margin-top: 4rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
}
@media (max-width: 768px) {
  .footer-custom .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}
.footer-custom .hover-accent {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.footer-custom .hover-accent:hover {
  background: rgba(6, 182, 212, 0.15);
  border-color: rgba(6, 182, 212, 0.4);
  color: #06B6D4 !important;
  transform: translateY(-2px);
}

.bg-surface {
  background-color: #F0F4F8;
  position: relative;
}
.bg-surface::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(10, 15, 30, 0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}
.bg-surface > .container {
  position: relative;
  z-index: 1;
}

.bg-primary {
  background-color: #0A0F1E !important;
}

/* Services List Page */
.svc-row {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(10, 15, 30, 0.06);
  border: 1px solid rgba(10, 15, 30, 0.06);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.svc-row:hover {
  box-shadow: 0 16px 40px rgba(10, 15, 30, 0.14);
}

.svc-img-col {
  overflow: hidden;
  min-height: 460px;
}
.svc-img-col img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.svc-row:hover .svc-img-col img {
  transform: scale(1.04);
}

.svc-text-col {
  background: #ffffff;
}

.svc-text-alt {
  background: #F0F4F8;
}

.svc-text {
  padding: 3.5rem;
}

.svc-detail-cta {
  background: linear-gradient(135deg, #0A0F1E 0%, #0c1a35 50%, #070b16 100%);
  border: 1px solid rgba(6, 182, 212, 0.15);
}

@media (max-width: 991px) {
  .svc-img-col {
    min-height: 260px;
  }
  .svc-img-col img {
    min-height: 260px;
  }
  .svc-text {
    padding: 2rem 1.5rem;
  }
}
/* About Page */
.about-sidenav {
  position: sticky;
  top: 100px;
}

.about-nav {
  border-left: 2px solid rgba(10, 15, 30, 0.08);
}

.about-nav-link {
  display: flex;
  align-items: center;
  padding: 0.65rem 1rem;
  color: #64748b;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  border-left: 2px solid transparent;
  margin-left: -2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 0 8px 8px 0;
}
.about-nav-link:hover {
  color: #0A0F1E;
  background: rgba(10, 15, 30, 0.04);
  border-left-color: #06B6D4;
}
.about-nav-link.active {
  color: #06B6D4;
  border-left-color: #06B6D4;
  background: rgba(6, 182, 212, 0.07);
  font-weight: 600;
}

.about-sidenav-cta {
  background: linear-gradient(135deg, #0A0F1E 0%, #0c1a35 50%, #070b16 100%);
  color: #ffffff;
  border: 1px solid rgba(6, 182, 212, 0.15);
  border-radius: 12px;
}

.about-full-img {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(10, 15, 30, 0.1);
  border: 1px solid rgba(10, 15, 30, 0.06);
}
.about-full-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.about-full-img-placeholder {
  width: 100%;
  height: 420px;
  background: linear-gradient(135deg, #0A0F1E 0%, #0c1a35 50%, #070b16 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed rgba(6, 182, 212, 0.35);
}

.about-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #0A0F1E 0%, #0c1a35 50%, #070b16 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed rgba(6, 182, 212, 0.35);
}

@media (max-width: 991px) {
  .about-sidenav {
    position: static;
    border-bottom: 1px solid rgba(10, 15, 30, 0.08);
    padding-bottom: 1.5rem;
    margin-bottom: 1rem;
  }
  .about-nav {
    flex-direction: row !important;
    flex-wrap: wrap;
    border-left: none;
    border-bottom: 2px solid rgba(10, 15, 30, 0.08);
    gap: 0.25rem;
  }
  .about-nav-link {
    border-left: none;
    border-bottom: 2px solid transparent;
    margin-left: 0;
    margin-bottom: -2px;
    border-radius: 8px 8px 0 0;
    font-size: 0.82rem;
    padding: 0.4rem 0.75rem;
  }
  .about-nav-link.active, .about-nav-link:hover {
    border-left-color: transparent;
    border-bottom-color: #06B6D4;
  }
}
/* Testimonials */
.testimonial-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(10, 15, 30, 0.1);
  border: 1px solid rgba(10, 15, 30, 0.06);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(135deg, #06B6D4 0%, #0891B2 100%);
}
.testimonial-card:hover {
  box-shadow: 0 16px 40px rgba(10, 15, 30, 0.14);
  transform: translateY(-3px);
}

.testimonial-text {
  color: #475569;
  line-height: 1.85;
  font-size: 1.05rem;
}

.testimonial-avatar {
  box-shadow: 0 4px 12px rgba(10, 15, 30, 0.15);
}

.testimonial-nav-btn {
  width: 48px;
  height: 48px;
  background: #0A0F1E;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(6, 182, 212, 0.2);
}
.testimonial-nav-btn:hover {
  background: linear-gradient(135deg, #06B6D4 0%, #0891B2 100%);
  color: #0A0F1E;
  border-color: transparent;
  box-shadow: 0 8px 32px rgba(6, 182, 212, 0.35);
}

.carousel-control-prev,
.carousel-control-next {
  width: 5%;
}

.carousel-indicators button {
  width: 8px;
  height: 8px;
  border-radius: 100px;
  background-color: rgba(10, 15, 30, 0.2);
  border: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-indicators .active {
  background: linear-gradient(135deg, #06B6D4 0%, #0891B2 100%);
  width: 24px;
}

.hover-accent:hover {
  color: #06B6D4 !important;
}

/* Form modernize */
.form-control {
  border-radius: 12px;
  border: 1.5px solid rgba(10, 15, 30, 0.1);
  padding: 0.75rem 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.form-control:focus {
  border-color: rgba(6, 182, 212, 0.5);
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.12);
}

/*# sourceMappingURL=main.css.map */
