/*** 
=============================================
    Breadcrumb area style
=============================================
***/
.breadcrumb-area {
    position: relative;
    display: block;
    overflow: hidden;
    padding: 80px 0 80px;
    z-index: -1;
}

.breadcrumb-area-bg {
    position: absolute;
    top: -20px;
    left: 0;
    bottom: -20px;
    right: 0;
    background-attachment: scroll;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
}

.breadcrumb-area-bg:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #000000;
    opacity: 0.60;
    z-index: -1;
}

.breadcrumb-area .inner-content {
    position: relative;
    display: block;
}

.breadcrumb-area .title {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
}

.breadcrumb-area .title h2 {
    color: #ffffff;
    font-size: 52px;
    line-height: 1.2em;
    font-weight: 900;
    text-transform: capitalize;
}


.breadcrumb-menu {
    position: relative;
    display: block;
    line-height: 0;
    padding-top: 4px;
    z-index: 1;
}

.breadcrumb-menu ul {
    position: relative;
    display: block;
    overflow: hidden;
}

.breadcrumb-menu ul li {
    position: relative;
    float: left;
    color: #ffffff;
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
    text-transform: capitalize;
    padding-right: 12px;
    margin-right: 12px;
}

.breadcrumb-menu ul li:before {
    content: "";
    position: absolute;
    top: 9px;
    right: 0;
    bottom: 7px;
    width: 1px;
    background-color: #ffffff;
    transform: rotate(12deg);
}

.breadcrumb-menu ul li:last-child:before {
    display: none;
}

.breadcrumb-menu ul li:last-child {
    padding-right: 0;
    margin-right: 0;
}

.breadcrumb-menu ul li a {
    color: #ffffff;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.breadcrumb-menu ul li:hover a,
.breadcrumb-menu ul li.active {
    color: #b5c3da;
}



.wave-container {
    position: relative;
    width: 100%;
    margin-top: -87px;
    z-index: 2;
    height: 72px;
    overflow: hidden;
}

/* Individual Wave Styling */
.wave {
    position: absolute;
    width: 170%; /* Make waves wider than the viewport to ensure full coverage on curves */
    height: 180px; /* Adjust height for the wave effect */
    background: white; /* Or a light grey color as in your image, e.g., #f0f0f0 */
    /* The magic for the wave shape: large top-left and top-right rounded corners */
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    left: -35%; /* Adjust to center the wider waves (- (width - 100) / 2) */
    transform-origin: 50% 100%; /* Set transform origin to the bottom center for rotation */
}

/* Animation Keyframes */
@keyframes waveAnimation {
    0% { transform: translateX(0) rotate(0deg); }
    25% { transform: translateX(-15%) rotate(2deg); }
    50% { transform: translateX(0) rotate(0deg); }
    75% { transform: translateX(5%) rotate(-2deg); }
    100% { transform: translateX(0) rotate(0deg); }
}

/* Specific wave styling for different layers and opacity */
.wave-1 {
    top: 0px; /* Position of the first wave */
    opacity: 0.2; /* Lighter wave */
    animation: waveAnimation 15s ease-in-out infinite; /* Slower, smoother animation */
}

.wave-2 {
    top: 30px; /* Offset from the first wave */
    opacity: 0.3; /* Slightly darker wave */
    animation: waveAnimation 18s ease-in-out infinite reverse; /* Different speed and direction */
}

.wave-3 {
    top: 60px; /* Offset from the second wave */
    opacity: 0.4; /* Darkest wave */
    animation: waveAnimation 16s ease-in-out infinite; /* Slightly different speed */
}

/* Content Area Below Waves */
.content-below-waves {
    padding-top: 50px; /* Adjust padding to clear the waves */
    background-color: #f8f9fa; /* Light background for content area */
    min-height: 400px; /* Ensure sufficient height */
}