.ndt-services-section {
    position: relative;
    width: 100%;
    padding: 40px 0;
    font-family: 'Sans-serif', Arial;
    overflow: hidden;
}

/* Header Styles */
.ndt-services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
    padding: 0 5%;
}

.ndt-main-title {
    color: #003e4f;
    font-size: 36px;
    font-weight: 800;
    line-height: 1.1;
    margin: 0;
}

.ndt-main-title::before {
    content: 'Nuestros';
    display: block;
    color: #00dcb4;
    font-size: 24px;
    font-weight: 700;
}

.ndt-title-line {
    width: 150px;
    height: 3px;
    background-color: #003e4f;
    margin-top: 10px;
    position: relative;
}

.ndt-title-line::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    border: 3px solid #003e4f;
    border-radius: 50%;
    background: #fff;
}

.ndt-header-right {
    text-align: right;
    position: relative;
    padding-right: 15px;
}

.ndt-subtitle {
    color: #666;
    font-size: 16px;
    line-height: 1.2;
    margin: 0;
}

.ndt-subtitle-line {
    position: absolute;
    right: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background-color: #00dcb4;
}

/* Carousel Track Background - HIDDEN as per request */
.ndt-track-bg {
    display: none !important;
}

/* Carousel Styles */
.ndt-services-carousel-wrapper {
    width: 100%; /* Full width for better spacing */
    margin: 0 auto;
    padding: 20px 0;
    position: relative;
    z-index: 5;
    overflow: hidden; /* Ensure no overflow */
}

.ndt-service-slide {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.ndt-hex-container {
    width: 340px;
    height: 340px;
    margin-bottom: 20px;
    filter: drop-shadow(0px 10px 15px rgba(0,0,0,0.15));
    transition: transform 0.3s;
}

.ndt-hex-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.ndt-service-slide:hover .ndt-hex-container {
    transform: translateY(-10px);
}

.ndt-hex-svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.ndt-service-title {
    font-size: 18px;
    font-weight: 700;
    color: #003e4f;
    margin: 0;
    line-height: 1.3;
    max-width: 200px;
}

.ndt-service-title a {
    color: inherit;
    text-decoration: none;
}

.ndt-service-description {
    font-size: 14px;
    color: #666666;
    line-height: 1.5;
    margin: 10px 0 0 0;
    max-width: 280px;
    text-align: center;
}

/* Navigation */
.ndt-services-nav {
    position: absolute;
    top: 50%; /* Center vertically relative to container */
    transform: translateY(-50%);
    width: 60px; /* Bigger size */
    height: 60px; /* Bigger size */
    background-color: rgba(100, 100, 100, 0.8); /* Darker, slightly transparent background */
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    border: 3px solid #fff; /* Thicker border */
    box-shadow: 0 4px 10px rgba(0,0,0,0.3); /* Stronger shadow */
    transition: all 0.3s;
    font-size: 30px; /* Bigger icon */
}

.ndt-services-nav:hover {
    background-color: #003e4f;
    transform: translateY(-50%) scale(1.1); /* Slight grow effect */
}

.ndt-prev {
    left: 20px; /* Far to the left */
}

.ndt-next {
    right: 20px; /* Far to the right */
}

/* Side Decors (Cyan Shapes) - HIDDEN */
.ndt-decor-left, .ndt-decor-right {
    display: none !important;
}

/* Responsive */
@media (max-width: 768px) {
    .ndt-services-header {
        flex-direction: column;
    }
    .ndt-header-right {
        text-align: left;
        padding-right: 0;
        padding-left: 15px;
        margin-top: 20px;
    }
    .ndt-subtitle-line {
        right: auto;
        left: 0;
    }
    .ndt-services-carousel-wrapper {
        width: 100%;
    }
    .ndt-prev { left: 10px; }
    .ndt-next { right: 10px; }
}
