.ndt-hero-section-outer {
    position: relative;
    width: 100%;
    height: 600px; /* Adjust height as needed */
    overflow: visible; /* Allow plus button to protrude */
    font-family: 'Sans-serif', Arial;
    padding: 0 2%; /* 2% lateral air */
    box-sizing: border-box;
}

.ndt-hero-carousel-wrapper.swiper-container {
    width: 100%;
    height: 100%;
    overflow: hidden; /* Mask slides */
    border-radius: 0 0 50px 0; /* Optional rounded corner */
}

.ndt-hero-slide {
    display: flex;
    width: 100%;
    height: 100%;
    position: relative;
    background-color: #fff;
}

.ndt-hero-left {
    width: 65%; /* Wider to accommodate the shape */
    height: 100%;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    padding-left: 8%;
}

.ndt-hero-curve-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #00dcb4; /* Default color */
    background-size: cover;
    background-position: center;
    background-blend-mode: multiply; /* Blend pattern with color */
    z-index: -1;
    
    /* The Shape: Rounded Left, Slanted Right */
    border-top-left-radius: 300px; /* Large round */
    border-bottom-left-radius: 300px;
    
    /* The Slant Mask */
    -webkit-mask-image: linear-gradient(105deg, black 75%, transparent 75.1%);
    mask-image: linear-gradient(105deg, black 75%, transparent 75.1%);
    
    /* Ensure it doesn't repeat if mask is smaller (it won't be) */
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
}

.ndt-hero-content {
  max-width: 500px;
  color: #fff;
  padding-right: 50px;
  padding-left: 99px;
  padding-top: 100px;
  padding-bottom: 100px;
}
.ndt-hero-title {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #003e4f;
    text-transform: uppercase;
}
.ndt-hero-desc {
  font-size: 25px;
  line-height: 30px;
  color:#13406c !important;
}

.ndt-hero-btn {
  color: #13406c !important;
  font-size: 19px;
}
.ndt-hero-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #fff;
    color: #00dcb4;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.ndt-hero-btn:hover {
    transform: translateY(-3px);
}

.ndt-hero-right {
    width: 55%; /* Overlap slightly */
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.ndt-bottom-text {
    margin: 40px;
    text-align: right;
    color: #003e4f;
}

.ndt-bottom-text h3 {
    font-size: 24px;
    line-height: 1.2;
    font-weight: 800;
    margin: 0;
    color: #003e4f;
}

.ndt-line {
    width: 100%;
    height: 4px;
    background-color: #00dcb4;
    margin-top: 10px;
}

/* Navigation */
.ndt-hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20; /* Ensure on top */
    transition: all 0.3s;
    font-size: 18px;
}

.ndt-prev {
    left: 4%; /* Adjusted for the padding */
    background-color: #008f75; /* Darker teal/green */
    color: #fff;
    border: 2px solid #fff; /* White border per image */
}

.ndt-prev:hover {
    background-color: #006b58;
}

.ndt-next {
    right: 4%; /* Adjusted for the padding */
    background-color: #d32f2f; /* Reddish tone */
    color: #fff;
    border: 2px solid #fff; /* White border */
}

.ndt-next:hover {
    background-color: #b71c1c;
}

.ndt-hero-plus-icon {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background-color: #003e4f;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    font-size: 24px;
}

