/* Ocean Harbor Architecture Studio - Custom Styles */

:root {
  --primary-color: #2C5F7A;
  --secondary-color: #B8D4E3;
  --accent-color: #1a3f52;
  --light-bg: #f8fcff;
  --text-dark: #1a1a1a;
  --text-light: #ffffff;
  --ocean-blue: #4a90b5;
  --wave-accent: #7eb5d4;
}

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: var(--primary-color);
}

.display-1, .display-2, .display-3, .display-4, .display-5 {
  font-weight: 800 !important;
  color: var(--primary-color) !important;
}

/* Navigation */
.navbar {
  background-color: rgba(44, 95, 122, 0.95) !important;
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar.sticky-top {
  background-color: var(--primary-color) !important;
}

.navbar-brand {
  color: var(--text-light) !important;
  font-size: 1.8rem !important;
  font-weight: 800 !important;
  letter-spacing: -0.5px;
  transition: transform 0.3s ease;
}

.navbar-brand:hover {
  transform: scale(1.05);
  color: var(--secondary-color) !important;
}

.navbar-nav .nav-link {
  color: var(--text-light) !important;
  font-weight: 600 !important;
  padding: 0.5rem 1rem !important;
  margin: 0 0.25rem;
  transition: all 0.3s ease;
  position: relative;
  text-transform: uppercase;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

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

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

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

.navbar-toggler {
  border: 2px solid var(--text-light) !important;
  padding: 0.5rem 0.75rem !important;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.25rem rgba(184, 212, 227, 0.5) !important;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* Hero Section */
.hero-section {
  min-height: 100vh !important;
  position: relative;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--ocean-blue) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(44, 95, 122, 0.7) 0%, rgba(44, 95, 122, 0.3) 100%);
  z-index: 1;
}

.hero-section .position-absolute {
  z-index: 0;
}

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

.hero-section .text-white {
  color: var(--text-light) !important;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-section .display-1 {
  color: var(--text-light) !important;
  font-size: clamp(2.5rem, 6vw, 5rem) !important;
  animation: fadeInUp 1s ease-out;
}

.hero-section .lead {
  color: var(--secondary-color) !important;
  font-size: clamp(1.1rem, 2vw, 1.75rem) !important;
  animation: fadeInUp 1.2s ease-out;
  font-weight: 400 !important;
}

/* Buttons */
.btn {
  border-radius: 50px;
  padding: 0.75rem 2rem !important;
  font-weight: 600 !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  font-size: 0.95rem;
}

.btn-lg {
  padding: 1rem 2.5rem !important;
  font-size: 1.1rem !important;
}

.btn-primary {
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
  color: var(--text-light) !important;
}

.btn-primary:hover {
  background-color: var(--accent-color) !important;
  border-color: var(--accent-color) !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(44, 95, 122, 0.4) !important;
  color: var(--text-light) !important;
}

.btn-outline-primary {
  border-color: var(--primary-color) !important;
  color: var(--primary-color) !important;
  background-color: transparent !important;
}

.btn-outline-primary:hover {
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
  color: var(--text-light) !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(44, 95, 122, 0.4) !important;
}

.btn-outline-secondary {
  border-color: var(--secondary-color) !important;
  color: var(--primary-color) !important;
  background-color: var(--text-light) !important;
}

.btn-outline-secondary:hover {
  background-color: var(--secondary-color) !important;
  border-color: var(--secondary-color) !important;
  color: var(--primary-color) !important;
  transform: translateY(-2px);
}

.btn-light {
  background-color: var(--text-light) !important;
  border-color: var(--text-light) !important;
  color: var(--primary-color) !important;
}

.btn-light:hover {
  background-color: var(--secondary-color) !important;
  border-color: var(--secondary-color) !important;
  color: var(--primary-color) !important;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.5rem 1.5rem !important;
  font-size: 0.875rem !important;
}

.btn-close-white {
  filter: brightness(0) invert(1);
}

/* Filter Buttons */
.filter-btn {
  background-color: var(--text-light) !important;
  color: var(--primary-color) !important;
  border: 2px solid var(--secondary-color) !important;
  margin: 0.5rem;
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
  color: var(--text-light) !important;
  transform: translateY(-2px);
}

/* Cards */
.card {
  border: none !important;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.4s ease;
  background: var(--text-light);
  height: 100%;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(44, 95, 122, 0.2) !important;
}

.card-header {
  background-color: var(--primary-color) !important;
  color: var(--text-light) !important;
  font-weight: 700 !important;
  border-bottom: 3px solid var(--secondary-color) !important;
}

.card-body {
  padding: 2rem;
}

.card-title {
  color: var(--primary-color) !important;
  font-weight: 700;
}

.card-img-top {
  height: 250px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.card:hover .card-img-top {
  transform: scale(1.05);
}

/* Service Cards */
.service-card {
  background: linear-gradient(135deg, var(--text-light) 0%, var(--light-bg) 100%);
  border: 2px solid var(--secondary-color) !important;
  transition: all 0.4s ease;
}

.service-card:hover {
  border-color: var(--primary-color) !important;
  background: var(--text-light);
}

.service-card .bi {
  color: var(--primary-color) !important;
  transition: all 0.3s ease;
}

.service-card:hover .bi {
  color: var(--ocean-blue) !important;
  transform: scale(1.1);
}

/* Portfolio */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  padding: 2rem 0;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
  height: 350px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}

.portfolio-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(44, 95, 122, 0.3);
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.portfolio-item:hover img {
  transform: scale(1.1);
}

.portfolio-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(44, 95, 122, 0.9) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.portfolio-item:hover::before {
  opacity: 1;
}

.portfolio-item .badge {
  background-color: var(--primary-color) !important;
  color: var(--text-light) !important;
  font-size: 0.85rem;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  z-index: 2;
}

.project-item {
  transition: all 0.3s ease;
}

.project-item:hover {
  transform: translateY(-5px);
}

/* Badge */
.badge {
  padding: 0.5rem 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.rounded-pill {
  border-radius: 50rem !important;
}

/* Forms */
.form-control,
.form-select {
  border: 2px solid var(--secondary-color) !important;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
  font-size: 1rem;
  color: var(--text-dark) !important;
  background-color: var(--text-light) !important;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary-color) !important;
  box-shadow: 0 0 0 0.25rem rgba(44, 95, 122, 0.15) !important;
  outline: none !important;
}

.form-label {
  font-weight: 600;
  color: var(--primary-color) !important;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

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

/* Shadows */
.shadow {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1) !important;
}

.shadow-sm {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08) !important;
}

.shadow-lg {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15) !important;
}

/* Images */
.img-fluid {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
}

.rounded {
  border-radius: 15px !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.object-fit-cover {
  object-fit: cover;
}

/* Background Colors */
.bg-white {
  background-color: var(--text-light) !important;
}

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

.bg-dark {
  background-color: var(--primary-color) !important;
}

/* Text Colors */
.text-white {
  color: var(--text-light) !important;
}

.text-muted {
  color: #6c757d !important;
}

.text-decoration-none {
  text-decoration: none !important;
}

.text-decoration-underline {
  text-decoration: underline !important;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--ocean-blue);
  text-decoration: none;
}

/* Modal */
.modal-content {
  border-radius: 20px;
  border: none;
  overflow: hidden;
}

.modal-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--ocean-blue) 100%);
  color: var(--text-light) !important;
  border-bottom: none;
  padding: 1.5rem 2rem;
}

.modal-title {
  color: var(--text-light) !important;
  font-weight: 700;
}

.modal-body {
  padding: 2rem;
}

.btn-close {
  filter: brightness(0) invert(1);
}

/* Carousel */
.carousel {
  border-radius: 15px;
  overflow: hidden;
}

.carousel-item {
  height: 500px;
}

.carousel-item img {
  height: 100%;
  object-fit: cover;
}

.carousel-control-prev,
.carousel-control-next {
  width: 5%;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: var(--primary-color);
  border-radius: 50%;
  padding: 1.5rem;
}

/* Icons */
.bi {
  vertical-align: middle;
}

.bi::before {
  vertical-align: middle;
}

/* Contact Info */
.bi-geo-alt-fill,
.bi-telephone-fill,
.bi-envelope-fill,
.bi-clock-fill,
.bi-geo-alt,
.bi-telephone,
.bi-envelope {
  color: var(--primary-color) !important;
  font-size: 1.5rem;
}

/* Social Icons */
.bi-facebook,
.bi-instagram,
.bi-linkedin {
  color: var(--text-light) !important;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.bi-facebook:hover,
.bi-instagram:hover,
.bi-linkedin:hover {
  color: var(--secondary-color) !important;
  transform: scale(1.2);
}

/* Service Icons */
.bi-chat-dots-fill,
.bi-briefcase-fill,
.bi-house-fill,
.bi-water,
.bi-leaf-fill,
.bi-map-fill,
.bi-building,
.bi-clipboard-data-fill {
  color: var(--primary-color) !important;
}

.bi-check-circle-fill {
  color: #28a745 !important;
}

.bi-star-fill {
  color: #ffc107 !important;
}

.bi-chevron-down {
  transition: transform 0.3s ease;
}

/* Lists */
.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.list-unstyled li {
  margin-bottom: 0.5rem;
}

/* Utility Classes */
.d-inline-flex {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
}

.opacity-90 {
  opacity: 0.9 !important;
}

.fst-italic {
  font-style: italic !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.fw-semibold {
  font-weight: 600 !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

/* Borders */
.border-0 {
  border: 0 !important;
}

.border-top {
  border-top: 1px solid rgba(44, 95, 122, 0.2) !important;
}

/* Spacing */
.py-0 { padding-top: 0 !important; padding-bottom: 0 !important; }
.py-2 { padding-top: 0.5rem !important; padding-bottom: 0.5rem !important; }
.py-3 { padding-top: 1rem !important; padding-bottom: 1rem !important; }
.py-4 { padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }
.py-5 { padding-top: 3rem !important; padding-bottom: 3rem !important; }

.px-0 { padding-left: 0 !important; padding-right: 0 !important; }
.px-3 { padding-left: 1rem !important; padding-right: 1rem !important; }
.px-4 { padding-left: 1.5rem !important; padding-right: 1.5rem !important; }
.px-5 { padding-left: 3rem !important; padding-right: 3rem !important; }

.p-0 { padding: 0 !important; }
.p-3 { padding: 1rem !important; }
.p-4 { padding: 1.5rem !important; }
.p-5 { padding: 3rem !important; }

.m-3 { margin: 1rem !important; }
.mt-2 { margin-top: 0.5rem !important; }
.mt-3 { margin-top: 1rem !important; }
.mt-4 { margin-top: 1.5rem !important; }
.mt-5 { margin-top: 3rem !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 0.25rem !important; }
.mb-2 { margin-bottom: 0.5rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mb-5 { margin-bottom: 3rem !important; }
.my-4 { margin-top: 1.5rem !important; margin-bottom: 1.5rem !important; }
.my-5 { margin-top: 3rem !important; margin-bottom: 3rem !important; }
.ms-auto { margin-left: auto !important; }
.me-2 { margin-right: 0.5rem !important; }
.me-3 { margin-right: 1rem !important; }

.pt-3 { padding-top: 1rem !important; }
.pt-4 { padding-top: 1.5rem !important; }
.ps-4 { padding-left: 1.5rem !important; }

/* Gaps */
.gap-2 { gap: 0.5rem !important; }
.gap-3 { gap: 1rem !important; }
.gap-4 { gap: 1.5rem !important; }

.g-0 { gap: 0 !important; }
.g-2 { gap: 0.5rem !important; }
.g-3 { gap: 1rem !important; }
.g-4 { gap: 1.5rem !important; }

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.fade-in {
  animation: fadeIn 0.8s ease-out;
}

.slide-in-left {
  animation: slideInLeft 0.8s ease-out;
}

.slide-in-right {
  animation: slideInRight 0.8s ease-out;
}

/* Smooth Transitions */
* {
  transition: background-color 0.3s ease, color 0.3s ease;
}

img {
  transition: transform 0.4s ease, filter 0.3s ease;
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background-color: rgba(44, 95, 122, 0.98);
    padding: 1.5rem;
    border-radius: 15px;
    margin-top: 1rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  }
  
  .navbar-nav {
    gap: 0.5rem !important;
  }
  
  .navbar-nav .nav-link {
    padding: 0.75rem 1rem !important;
    border-radius: 8px;
  }
  
  .navbar-nav .nav-link:hover {
    background-color: rgba(184, 212, 227, 0.1);
  }
  
  .hero-section .display-1 {
    font-size: 2.5rem !important;
  }
  
  .hero-section .lead {
    font-size: 1.25rem !important;
  }
  
  .px-lg-5 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  
  .ps-lg-5 {
    padding-left: 1rem !important;
  }
  
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  
  .carousel-item {
    height: 300px;
  }
  
  .d-lg-block {
    display: none !important;
  }
  
  .col-lg-2,
  .col-lg-3,
  .col-lg-4,
  .col-lg-5,
  .col-lg-6,
  .col-lg-7,
  .col-lg-8,
  .col-lg-10 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .order-lg-1,
  .order-lg-2 {
    order: 0 !important;
  }
  
  .text-lg-end {
    text-align: left !important;
  }
  
  .mb-lg-0 {
    margin-bottom: 1rem !important;
  }
  
  .mt-lg-0 {
    margin-top: 1rem !important;
  }
}

@media (max-width: 767.98px) {
  .display-1 { font-size: 2rem !important; }
  .display-3 { font-size: 2rem !important; }
  .display-4 { font-size: 1.75rem !important; }
  .display-5 { font-size: 1.5rem !important; }
  
  .btn {
    padding: 0.625rem 1.5rem !important;
    font-size: 0.875rem !important;
  }
  
  .btn-lg {
    padding: 0.75rem 2rem !important;
    font-size: 1rem !important;
  }
  
  .card-body {
    padding: 1.5rem;
  }
  
  .portfolio-item {
    height: 250px;
  }
  
  .px-md-5 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  
  .p-md-5 {
    padding: 1.5rem !important;
  }
  
  .col-md-4,
  .col-md-5,
  .col-md-6,
  .col-md-7,
  .col-md-8 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .text-md-start,
  .text-md-end {
    text-align: center !important;
  }
}

@media (max-width: 575.98px) {
  .container,
  .container-fluid {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .px-5 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  
  .py-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  
  .fs-1 { font-size: 1.75rem !important; }
  .fs-2 { font-size: 1.5rem !important; }
  .fs-3 { font-size: 1.25rem !important; }
  .fs-5 { font-size: 1rem !important; }
  .fs-6 { font-size: 0.875rem !important; }
  
  .col-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .col-4 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  
  .btn-group {
    flex-direction: column;
    width: 100%;
  }
  
  .btn-group .btn {
    width: 100%;
    margin-bottom: 0.5rem;
  }
  
  .modal-dialog {
    margin: 0.5rem;
  }
}

/* Print Styles */
@media print {
  .navbar,
  .btn,
  .modal,
  .carousel-control-prev,
  .carousel-control-next {
    display: none !important;
  }
  
  body {
    background: white;
    color: black;
  }
  
  a {
    text-decoration: underline;
  }
}

/* Accessibility */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

*:focus {
  outline: 2px solid var(--secondary-color);
  outline-offset: 2px;
}

button:focus,
a:focus,
input:focus,
textarea:focus,
select:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--light-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-color);
}

/* Loading Animation */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

/* Hover Effects */
.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(44, 95, 122, 0.2);
}

/* Section Styling */
section {
  padding: 5rem 0;
  position: relative;
}

section:nth-child(even) {
  background-color: var(--light-bg);
}

/* Footer */
footer {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  color: var(--text-light) !important;
}

footer a {
  color: var(--secondary-color) !important;
}

footer a:hover {
  color: var(--text-light) !important;
}

footer h5,
footer h6 {
  color: var(--text-light) !important;
}

footer .list-unstyled a {
  display: inline-block;
  margin-bottom: 0.5rem;
  transition: transform 0.3s ease;
}

footer .list-unstyled a:hover {
  transform: translateX(5px);
}

/* Video Background */
video.position-absolute {
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 0;
}

/* Overlay Effects */
.overlay {
  position: relative;
}

.overlay::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(44, 95, 122, 0.7);
  z-index: 1;
}

.overlay > * {
  position: relative;
  z-index: 2;
}

/* Wave Divider */
.wave-divider {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.wave-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 60px;
}

.wave-divider .shape-fill {
  fill: var(--text-light);
}